Skip to content

Commit e0e43eb

Browse files
committed
Still had a couple of actual/expected values transposed. Fixed.
1 parent 9fdadac commit e0e43eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

koans/AboutExpects.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe("About Expects", function() {
1010
var expectedValue = __;
1111
var actualValue = 1 + 1;
1212

13-
expect(expectedValue === actualValue).toBeTruthy();
13+
expect(actualValue === expectedValue).toBeTruthy();
1414
});
1515

1616
//Some ways of asserting equality are better than others.
@@ -33,6 +33,6 @@ describe("About Expects", function() {
3333

3434
//Sometimes we will ask you to fill in the values
3535
it("should have filled in values", function () {
36-
expect(__).toEqual(1 + 1);
36+
expect(1 + 1).toEqual(__);
3737
});
3838
});

0 commit comments

Comments
 (0)