summaryrefslogtreecommitdiffstats
path: root/js/vendor/es6-shim/test-sham/set-prototype-of.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/es6-shim/test-sham/set-prototype-of.js')
-rw-r--r--js/vendor/es6-shim/test-sham/set-prototype-of.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/vendor/es6-shim/test-sham/set-prototype-of.js b/js/vendor/es6-shim/test-sham/set-prototype-of.js
index e46bb6a03..06683b492 100644
--- a/js/vendor/es6-shim/test-sham/set-prototype-of.js
+++ b/js/vendor/es6-shim/test-sham/set-prototype-of.js
@@ -3,7 +3,7 @@ describe('Object.setPrototypeOf(o, p)', function () {
'use strict';
it('changes prototype to regular objects', function () {
- var obj = {a: 123};
+ var obj = { a: 123 };
expect(obj).to.be.an.instanceOf(Object);
// sham requires assignment to work cross browser
obj = Object.setPrototypeOf(obj, null);