Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ssadler committed Dec 4, 2012
2 parents a285f0c + f29a786 commit 06f9848
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests.py
Expand Up @@ -53,7 +53,7 @@ def test_20_50(self):
input_num2 = "L"
expected = "LXX"

result = add_numerals(input_num1, input_num2)
result = add_numeral(input_num1, input_num2)

self.assertEqual(result, expected)

Expand All @@ -62,6 +62,6 @@ def test_26_200(self):
input_num2 = "CC"
expected = "CCXXVI"

result = add_numerals(input_num1, input_num2)
result = add_numeral(input_num1, input_num2)

self.assertEqual(result, expected)

0 comments on commit 06f9848

Please sign in to comment.