Skip to content

Commit ff04a7c

Browse files
committed
Remove mention of ==
Fixes learn-co-students#8
1 parent 74caf77 commit ff04a7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ This is a lot to take in, so we'll go through it slowly.
118118

119119
What could `AssertionError` mean? Well, it probably means that our test _asserted_ (or expected) that something would be true, and that that thing wasn't true.
120120

121-
What is that thing? The test expected the empty string, `''`, to be equal to (remember `==`?) the string `'Hello, everybody!'` — but, of course, these strings are not equal.
121+
What is that thing? The test expected the empty string, `''`, to be equal to the string `'Hello, everybody!'` — but, of course, these strings are not equal.
122122

123123
`+ expected - actual` is a key for reading the statements below it. `+ expected` tells us that the expected output shows up in that yellowish green; `- actual` tells us what actually happened.
124124

0 commit comments

Comments
 (0)