Skip to content

Commit 43eb61e

Browse files
committed
Actually expand coverage this time
1 parent 2fff1ff commit 43eb61e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

axelrod/tests/unit/test_resultset.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def _clear_matrix(self, matrix):
195195
for j in range(len(matrix[i])):
196196
matrix[i][j] = 0
197197

198-
def test_ne(self):
198+
def test_ne_vectors(self):
199199
rs_1 = axelrod.ResultSet(
200200
self.filename,
201201
self.players,
@@ -208,7 +208,8 @@ def test_ne(self):
208208
self.repetitions
209209
)
210210

211-
rs_2.wins = -1
211+
# A different vector
212+
rs_2.eigenmoses_rating = (-1, -1, -1)
212213

213214
self.assertNotEqual(rs_1, rs_2)
214215

0 commit comments

Comments
 (0)