Skip to content

Commit

Permalink
Move the test to a more logical spot
Browse files Browse the repository at this point in the history
  • Loading branch information
Trenly committed Nov 22, 2024
1 parent a19d706 commit dac5fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AppInstallerCLITests/Versions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ TEST_CASE("VersionCompare", "[versions]")

// Ensure that versions with non-digit characters in their parts are sorted correctly
RequireLessThan("1-rc", "1");
RequireLessThan("1.0.0-rc", "1");
RequireLessThan("1.2-rc", "1.2");
RequireLessThan("1.0-rc", "1.0");
RequireLessThan("1.0.0-rc", "1");
RequireLessThan("22.0.0-rc.1", "22.0.0");
RequireLessThan("22.0.0-rc.1", "22.0.0.1");
RequireLessThan("22.0.0-rc.1", "22.0.0.1-rc");
Expand Down

0 comments on commit dac5fd5

Please sign in to comment.