diff --git a/ultimatepython/syntax/variable.py b/ultimatepython/syntax/variable.py index 234314c..64cc80d 100644 --- a/ultimatepython/syntax/variable.py +++ b/ultimatepython/syntax/variable.py @@ -46,7 +46,7 @@ def main(): # We can use underscores (literal `_`) to separate digit groups in # integer literals assert 10_000 == 10000 - assert 0x01_0f_2c == 69_420 + assert 0x01_0F_2C == 69_420 assert 3.456_290e-1 == 0.3_456_290 # There is also a special literal called None. This literal is used to