summaryrefslogtreecommitdiff
path: root/js/test/Ice/exceptions/Client.js
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-04-11 23:41:09 +0200
committerJose <jose@zeroc.com>2017-04-11 23:41:09 +0200
commitc46e19eee014a3bc94dd174ee64b0c48c5d9e493 (patch)
tree34b8f25dfeb6e75fd40a3178e51ca7fa833f09df /js/test/Ice/exceptions/Client.js
parentJavaScript CHANGELOG updates (diff)
downloadice-c46e19eee014a3bc94dd174ee64b0c48c5d9e493.tar.bz2
ice-c46e19eee014a3bc94dd174ee64b0c48c5d9e493.tar.xz
ice-c46e19eee014a3bc94dd174ee64b0c48c5d9e493.zip
Remove JavaScript Ice.Buffer.createNative helper method
Diffstat (limited to 'js/test/Ice/exceptions/Client.js')
-rw-r--r--js/test/Ice/exceptions/Client.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/test/Ice/exceptions/Client.js b/js/test/Ice/exceptions/Client.js
index c613df0fa74..592180ca7b4 100644
--- a/js/test/Ice/exceptions/Client.js
+++ b/js/test/Ice/exceptions/Client.js
@@ -361,7 +361,7 @@
function(ex)
{
test(ex instanceof Ice.MemoryLimitException);
- return thrower.throwMemoryLimitException(Ice.Buffer.createNative(20 * 1024));
+ return thrower.throwMemoryLimitException(new Uint8Array(20 * 1024));
}
).then(
failCB,