Skip to content

Commit 4c593d1

Browse files
committed
Debug tests
1 parent 7b3a6ed commit 4c593d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_pythagorean_tuples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def test_random_huge(self):
185185

186186
class TestC(unittest.TestCase):
187187
def test_12(self):
188-
self.assertEqual({(12, 5, 13), (12, 35, 37)}, pythagorean_triples(12, False))
188+
self.assertEqual({(12, 5, 13), (12, 35, 37), (12, 9, 15), (12, 16, 20)}, pythagorean_triples(12, False))
189189

190190
def test_14(self):
191191
self.assertEqual({(14, 48, 50)}, pythagorean_triples(14, False))

0 commit comments

Comments
 (0)