Fix warning

This commit is contained in:
Eelco Dolstra 2020-05-08 11:35:57 +02:00
parent 7cc7cef950
commit 72b9d971bc
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -481,8 +481,7 @@ namespace nix {
* --------------------------------------------------------------------------*/ * --------------------------------------------------------------------------*/
TEST(tokenizeString, empty) { TEST(tokenizeString, empty) {
auto s = ""; Strings expected = { };
Strings expected = { };
ASSERT_EQ(tokenizeString<Strings>(""), expected); ASSERT_EQ(tokenizeString<Strings>(""), expected);
} }