diff options
| -rw-r--r-- | unittest/test_bindings.py | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/unittest/test_bindings.py b/unittest/test_bindings.py index 3bb8ca8..a5ef607 100644 --- a/unittest/test_bindings.py +++ b/unittest/test_bindings.py @@ -10,6 +10,13 @@ def to_hex(s):      return "".join("{:02x}".format(ord(c)) for c in s) +def wait(t): +    import time +    msg = 'Waiting for %d seconds' % t +    print(msg.center(40, '=')) +    time.sleep(t) + +  RFC_SECRET_HR = '12345678901234567890'  RFC_SECRET = to_hex(RFC_SECRET_HR)  # '12345678901234567890' @@ -486,13 +493,6 @@ def test_read_write_config(C):      assert config == (255, 255, 255, False, True) -def wait(t): -    import time -    msg = 'Waiting for %d seconds' % t -    print(msg.center(40, '=')) -    time.sleep(t) - -  @pytest.mark.skip(reason='Recover not implemented for NK Storage')  def test_factory_reset(C):      C.NK_set_debug(True) | 
