Fix small typo in storage test

This commit is contained in:
Maschell 2024-03-02 10:46:16 +01:00
parent e02376e5a1
commit 3b5cc2f932
1 changed files with 1 additions and 1 deletions

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());
}