Skip to content

Commit

Permalink
Fix want != got (quii#260)
Browse files Browse the repository at this point in the history
* Fix want != got

* Fix want != got
  • Loading branch information
lpintes authored Jan 30, 2020
1 parent 5c05bda commit 3c63e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maps.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ func TestAdd(t *testing.T) {
t.Fatal("should find added word:", err)
}

if want != got {
if got != want {
t.Errorf("got %q want %q", got, want)
}
}
Expand Down

0 comments on commit 3c63e5a

Please sign in to comment.