Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilchmela committed Sep 16, 2024
1 parent 5fcbb4d commit 8e3640e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/UnitTests/Fram.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ TEST_CASE("Mocked functions do nothing by default")

auto writeData = std::array{0xAA_b, 0xBB_b, 0xCC_b, 0xDD_b};
fram::WriteTo(address, Span(writeData), 0 * s);
readData = fram::ReadFrom<writeData.size()>(address, * s);
readData = fram::ReadFrom<writeData.size()>(address, *s);
CHECK(readData == decltype(readData){});
}
}
Expand Down

0 comments on commit 8e3640e

Please sign in to comment.