fix enumerable property position in test

This commit is contained in:
Sebastian McKenzie
2015-04-11 16:35:19 -07:00
parent 235cbc18cf
commit 1360c93e4b

View File

@@ -7,8 +7,8 @@ var Foo = (function () {
babelHelpers.createClass(Foo, null, [{
key: "bar",
enumerable: true,
value: "foo"
value: "foo",
enumerable: true
}]);
return Foo;
})();