Skip to content

Commit 348c56e

Browse files
author
Derp McDerpson
authored
Update test.py
1 parent dc7a7ad commit 348c56e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

test.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,10 @@ def test_not(self):
2222
def test_plus(self):
2323
self.assertEqual(Run("1+1"), [1, 1])
2424
self.assertEqual(Run("1&1&1&1+1&1&1&1"), [1, 1])
25-
26-
def test_length(self):
27-
self.assertEqual(Run("$1000"), [1, 0, 0])
28-
self.assertEqual(Run("$1"), [1])
29-
self.assertEqual(Run("$1111111111"), [1, 0, 1, 0])
25+
26+
def test_ascii(self):
27+
self.assertEqual(Run("@1001000"), ["H"])
28+
self.assertEqual(Run("@111111+@111111"), ["?", "?"])
3029

3130
def test_reverse(self):
3231
self.assertEqual(Run("~1"), [1])

0 commit comments

Comments
 (0)