Explorar el Código

Updated test about small numbers

Yann Weber hace 6 años
padre
commit
6fe79da798
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      tests/test_rpnsymbol.py

+ 1
- 1
tests/test_rpnsymbol.py Ver fichero

@@ -13,7 +13,7 @@ class RpnSymbolTestCase(unittest.TestCase):
13 13
 
14 14
     def test_value(self):
15 15
         sym = RpnSymbol(42, RpnSymbol.VALUE)
16
-        self.assertEqual(str(sym), '0x002A')
16
+        self.assertEqual(str(sym), '0x2A')
17 17
 
18 18
     def test_op(self):
19 19
         sym = RpnSymbol(0, RpnSymbol.OPERATION)

Loading…
Cancelar
Guardar