1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2026-01-03 16:13:07 +00:00

Remove unecessary sort in test

This commit is contained in:
ddbb07 2025-12-04 23:03:39 +01:00
parent 079ccd92b1
commit b621d09b58

View file

@ -35,7 +35,6 @@ namespace MWGui
TEST(MWGuiWeightedSearchTests, generatePatternArrayBasicSplittingTest)
{
std::vector<std::string> expected = { "x", "y", "z" };
std::sort(expected.begin(), expected.end());
std::vector<std::string> output1 = generatePatternArray(std::string("x y z"));
std::sort(output1.begin(), output1.end());