summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-09-20 16:24:25 -0400
committerColin Walters <walters@verbum.org>2010-09-23 14:10:13 -0400
commit734c82571e879a16b4600319dcbb793261cd5980 (patch)
tree1485c47c32db45cb7fc71f1c80b8448b592ee5fc
parentae284842c653c79b3ac604c6a253799eb744616a (diff)
downloadgjs-734c82571e879a16b4600319dcbb793261cd5980.tar.gz
dbus: Use hex in string literals instead of deprecated octal syntax
Octal appears to be deprecated in XULRunner 1.9.3. https://bugzilla.gnome.org/show_bug.cgi?id=630416
-rw-r--r--test/js/testDbus.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/testDbus.js b/test/js/testDbus.js
index a426126c..8f503ea5 100644
--- a/test/js/testDbus.js
+++ b/test/js/testDbus.js
@@ -757,7 +757,7 @@ function testGetMessageContextAsync() {
}
function testByteArrays() {
- let someString = "Hello\0world!\0\0\1\2\3";
+ let someString = "Hello\x00world!\x00\x00\x01\x02\x03";
let theResult, theExcp;
Mainloop.idle_add(function() {
let proxy = new Malarky();