summaryrefslogtreecommitdiff
path: root/js/test/Ice/operations/Client.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/test/Ice/operations/Client.js')
-rw-r--r--js/test/Ice/operations/Client.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/test/Ice/operations/Client.js b/js/test/Ice/operations/Client.js
index dd9840d4e9c..65d955bfd1b 100644
--- a/js/test/Ice/operations/Client.js
+++ b/js/test/Ice/operations/Client.js
@@ -65,9 +65,9 @@
let communicator;
try
{
- const properties = this.createTestProperties(args);
+ const [properties] = this.createTestProperties(args);
properties.setProperty("Ice.BatchAutoFlushSize", "100");
- communicator = this.initialize(properties);
+ [communicator] = this.initialize(properties);
await this.allTests(Test, false);
}
finally