From 9ce384b7e8c215975de7d438ebb8240f2b2c3d85 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Sat, 14 Jan 2017 10:02:44 +0100 Subject: [PATCH] fix(ci): Update test --- tests/unit_tests/utils/string.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 = [] {