diff --git a/tests/unit_tests/utils/string.cpp b/tests/unit_tests/utils/string.cpp index 2e13b2c8..49688122 100644 --- a/tests/unit_tests/utils/string.cpp +++ b/tests/unit_tests/utils/string.cpp @@ -100,10 +100,10 @@ int main() { expect(string_util::filesize(3 * 1024 * 1024) == "3 GB"); }; - "stringstream"_test = [] { + "sstream"_test = [] { string s; - expect((s = (stringstream() << "test")) == "test"s); - expect((s = (stringstream() << std::setprecision(2) << std::fixed << 1.25)).erase(0, 2) == "25"s); + expect((s = (sstream() << "test")) == "test"s); + expect((s = (sstream() << std::setprecision(2) << std::fixed << 1.25)).erase(0, 2) == "25"s); }; "operators"_test = [] {