From b69d768b13d9dfc306635c9a1257bb3b99768e80 Mon Sep 17 00:00:00 2001 From: Brad Van Vugt <1531419+bvanvugt@users.noreply.github.com> Date: Sun, 5 Jan 2020 21:53:11 -0800 Subject: [PATCH] correct error message --- standard_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standard_test.go b/standard_test.go index be2b016..788b1ea 100644 --- a/standard_test.go +++ b/standard_test.go @@ -358,7 +358,7 @@ func TestMoveSnakesWrongID(t *testing.T) { r := StandardRuleset{} err := r.moveSnakes(b, moves) - require.Equal(t, err, errors.New("snake not found")) + require.Equal(t, err, errors.New("snake not found for move")) } func TestMoveSnakesNotEnoughMoves(t *testing.T) {