summaryrefslogtreecommitdiff
path: root/test/built-ins/BigInt/prototype/Symbol.toStringTag.js
diff options
context:
space:
mode:
authorAndré Bargull <andre.bargull@gmail.com>2018-02-09 09:09:47 -0800
committerLeo Balter <leonardo.balter@gmail.com>2018-02-09 12:09:47 -0500
commitf95b56ab28c5f18150f30fbfa889a4f6ba0e50a1 (patch)
treed403f704c1b6a1842f12df380651919beaaf5fef /test/built-ins/BigInt/prototype/Symbol.toStringTag.js
parenta01de4a722d088055a7d84d8c691ddd7109edb34 (diff)
downloadqtdeclarative-testsuites-f95b56ab28c5f18150f30fbfa889a4f6ba0e50a1.tar.gz
Revert "js-beautify: make all indentation consistent (depth & character) (#1409)" (#1412)
This reverts commit a01de4a722d088055a7d84d8c691ddd7109edb34.
Diffstat (limited to 'test/built-ins/BigInt/prototype/Symbol.toStringTag.js')
-rw-r--r--test/built-ins/BigInt/prototype/Symbol.toStringTag.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/BigInt/prototype/Symbol.toStringTag.js b/test/built-ins/BigInt/prototype/Symbol.toStringTag.js
index 835e35224..146369719 100644
--- a/test/built-ins/BigInt/prototype/Symbol.toStringTag.js
+++ b/test/built-ins/BigInt/prototype/Symbol.toStringTag.js
@@ -21,8 +21,8 @@ verifyProperty(BigInt.prototype, Symbol.toStringTag, {
configurable: true
});
-assert.sameValue(Object.prototype.toString.call(3 n), "[object BigInt]");
-assert.sameValue(Object.prototype.toString.call(Object(3 n)), "[object BigInt]");
+assert.sameValue(Object.prototype.toString.call(3n), "[object BigInt]");
+assert.sameValue(Object.prototype.toString.call(Object(3n)), "[object BigInt]");
// Verify that Object.prototype.toString does not have special casing for BigInt
// as it does for most other primitive types
@@ -33,5 +33,5 @@ Object.defineProperty(BigInt.prototype, Symbol.toStringTag, {
configurable: true
});
-assert.sameValue(Object.prototype.toString.call(3 n), "[object FooBar]");
-assert.sameValue(Object.prototype.toString.call(Object(3 n)), "[object FooBar]");
+assert.sameValue(Object.prototype.toString.call(3n), "[object FooBar]");
+assert.sameValue(Object.prototype.toString.call(Object(3n)), "[object FooBar]");