summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/concurrent-executor/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/concurrent-executor/util.js')
-rw-r--r--tests/auto/blackbox/testdata/concurrent-executor/util.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/auto/blackbox/testdata/concurrent-executor/util.js b/tests/auto/blackbox/testdata/concurrent-executor/util.js
deleted file mode 100644
index a37a8cbb1..000000000
--- a/tests/auto/blackbox/testdata/concurrent-executor/util.js
+++ /dev/null
@@ -1,8 +0,0 @@
-function sleep(timeInMs)
-{
- var referenceTime = new Date();
- var time = null;
- do {
- time = new Date();
- } while (time - referenceTime < timeInMs);
-}