Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/tests/typedObjects.js

Issue 29324295: Noissue - Add missing semicolons (Closed)
Patch Set: Created Aug. 19, 2015, 10:19 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/typedObjects/utils.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/tests/typedObjects.js
diff --git a/test/tests/typedObjects.js b/test/tests/typedObjects.js
index 79b55f9ff18ea010d077fefe6b6aabf6309647f2..83ee6c4dd0ed0a08d78a6a62d7e5975af2f3d523 100644
--- a/test/tests/typedObjects.js
+++ b/test/tests/typedObjects.js
@@ -211,8 +211,8 @@
ok(!obj2.bar.equals(obj5.bar), "Object reference not equal to null reference");
obj5.bar = obj3;
- ok(!obj2.bar.equals(obj5.bar), "Object reference not equal to reference to another object")
- ok(!obj5.bar.equals(obj2.bar), "Object reference not equal to reference to another object")
+ ok(!obj2.bar.equals(obj5.bar), "Object reference not equal to reference to another object");
+ ok(!obj5.bar.equals(obj2.bar), "Object reference not equal to reference to another object");
});
test("Object inheritance", function()
@@ -271,7 +271,7 @@
equal(typeof obj4.bar, "function", "Subclass method exists in subclass");
equal(obj3.foo(4), 8, "Superclass method executed correctly");
- equal(obj4.foo(4), 30, "Overridden superclass method executed correctly")
+ equal(obj4.foo(4), 30, "Overridden superclass method executed correctly");
let type5 = type3.extend({
y: uint8
« no previous file with comments | « lib/typedObjects/utils.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld