Fix the errors for the old octal tests.

This commit is contained in:
Dave Halter
2016-07-18 19:28:01 +02:00
parent 2776af3db5
commit b5bd8496b0
2 changed files with 6 additions and 3 deletions

View File

@@ -85,7 +85,6 @@ def test_completion_on_hex_literals():
# (invalid statements).
assert api.Script('0b2.').completions() == []
_check_number('0b1.', 'int') # binary
_check_number('0o7.', 'int') # octal
_check_number('0x2e.', 'int')
_check_number('0xE7.', 'int')