summaryrefslogtreecommitdiff
path: root/test/http/utility_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/http/utility_test.cpp')
-rw-r--r--test/http/utility_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/http/utility_test.cpp b/test/http/utility_test.cpp
index cc21bbcf2f..5f62d3f3d1 100644
--- a/test/http/utility_test.cpp
+++ b/test/http/utility_test.cpp
@@ -162,9 +162,9 @@ TEST(AppendUrlFromPieces, PiecesAreAppendedViaDelimiters)
appendUrlPieces(url, "bar");
EXPECT_EQ(std::string_view(url.data(), url.size()), "/redfish/v1/foo/bar");
- appendUrlPieces(url, "/", "bad&tring");
+ appendUrlPieces(url, "/", "bad&string");
EXPECT_EQ(std::string_view(url.data(), url.size()),
- "/redfish/v1/foo/bar/%2F/bad&tring");
+ "/redfish/v1/foo/bar/%2F/bad&string");
}
} // namespace