From af8027e6d84aed010ec95a05ce7a194909ec4b62 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Mon, 12 Mar 2018 14:18:13 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/chess/moves/rook_test.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/chess/moves/rook_test.exs b/test/chess/moves/rook_test.exs index da7d3ea..a223c95 100644 --- a/test/chess/moves/rook_test.exs +++ b/test/chess/moves/rook_test.exs @@ -9,7 +9,7 @@ defmodule Chess.Moves.RookTest do expected_moves = Enum.sort([ {4, 0}, {4, 1}, {4, 2}, {4, 3}, {4, 4}, {4, 6}, {4, 7}, - {0, 5}, {1, 5}, {2, 5}, {3, 5}, {5, 5}, {6, 5}, {7, 5}, + {0, 5}, {1, 5}, {2, 5}, {3, 5}, {5, 5}, {6, 5}, {7, 5}, ]) assert Enum.sort(moves) == expected_moves end @@ -20,7 +20,7 @@ defmodule Chess.Moves.RookTest do expected_moves = Enum.sort([ {0, 1}, {0, 2}, {0, 3}, {0, 4}, {0, 5}, {0, 6}, {0, 7}, - {1, 0}, {2, 0}, {3, 0}, {4, 0}, {5, 0}, {6, 0}, {7, 0}, + {1, 0}, {2, 0}, {3, 0}, {4, 0}, {5, 0}, {6, 0}, {7, 0}, ]) assert Enum.sort(moves) == expected_moves end