Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/validation/i2c_master/i2c_master.ino
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void rtc_run_clock() {
ds1307_get_time(&read_sec, &read_min, &read_hour, &read_day, &read_month, &read_year);

//Check time
TEST_ASSERT_UINT8_WITHIN(2, start_sec + 5, read_sec);
TEST_ASSERT_NOT_EQUAL(start_sec, read_sec); //Seconds should have changed
TEST_ASSERT_EQUAL(start_min, read_min);
TEST_ASSERT_EQUAL(start_hour, read_hour);
TEST_ASSERT_EQUAL(start_day, read_day);
Expand Down
Loading