Skip to content

Commit

Permalink
Minor bugfix (wrong operator) (quii#528)
Browse files Browse the repository at this point in the history
As this is the second assignment of got in this function, := is improper and '=' should be used.
  • Loading branch information
leighstillard authored Feb 26, 2022
1 parent c6b98c3 commit 9a9b0ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ Add the following to the end of our current test.
//file_system_store_test.go

// read again
got := store.GetLeague()
got = store.GetLeague()
assertLeague(t, got, want)
```

Expand Down

0 comments on commit 9a9b0ef

Please sign in to comment.