diff options
-rw-r--r-- | tests/pyb/rtc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pyb/rtc.py b/tests/pyb/rtc.py index 219d0791af..f2c96f160e 100644 --- a/tests/pyb/rtc.py +++ b/tests/pyb/rtc.py @@ -6,7 +6,7 @@ print(rtc) # make sure that 1 second passes correctly rtc.datetime((2014, 1, 1, 1, 0, 0, 0, 0)) -pyb.delay(1000) +pyb.delay(1001) print(rtc.datetime()[:7]) def set_and_print(datetime): |