diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2018-01-29 19:02:48 +0100 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2018-01-29 19:02:48 +0100 |
commit | 25e458ea8fdd4d704ce29709852b122cbcad5f06 (patch) | |
tree | 1003fa4b52153e3b2b727ce1bc394435d2fc9187 /unittest/test_offline.cc | |
parent | f5235ca6cff56b7561901d311f6bd65aa2615ffb (diff) | |
parent | 6f35a5f98174a84bc4d96a98c37f66acc06f5b22 (diff) | |
download | libnitrokey-25e458ea8fdd4d704ce29709852b122cbcad5f06.tar.gz libnitrokey-25e458ea8fdd4d704ce29709852b122cbcad5f06.tar.bz2 |
Merge branch 'update_catch'
Closes #91
Diffstat (limited to 'unittest/test_offline.cc')
-rw-r--r-- | unittest/test_offline.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/test_offline.cc b/unittest/test_offline.cc index 2d1fcb3..3ef63d2 100644 --- a/unittest/test_offline.cc +++ b/unittest/test_offline.cc @@ -115,7 +115,7 @@ TEST_CASE("Test helper function - hex_string_to_byte", "[fast]") { REQUIRE(v.size() == sizeof(test_data)); for (int i = 0; i < v.size(); ++i) { INFO("Position i: " << i); - REQUIRE(v.data()[i] == test_data[i]); + REQUIRE(v[i] == test_data[i]); } } |