Fix small typo in storage test

This commit is contained in:
Maschell 2024-03-02 10:46:16 +01:00
parent 284713c9f6
commit fe1c4aa671

View File

@ -977,5 +977,5 @@ TEST_CASE("Store empty binary works") {
std::vector<uint8_t> get_vector{0x13, 0x37};
res = WUPSStorageAPI::Get("test", get_vector);
REQUIRE(res == WUPS_STORAGE_ERROR_SUCCESS);
REQUIRE(empty_vector.empty());
REQUIRE(get_vector.empty());
}