Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Edwards committed Jan 6, 2025
1 parent e26d0cb commit 4aa16ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test-transf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,11 @@ namespace libsemigroups {
LibsemigroupsException);
REQUIRE_THROWS_AS(to_pperm(std::initializer_list<point_type>({1, 2, 3})),
LibsemigroupsException);
REQUIRE_NOTHROW(to_pperm(std::initializer_list<u_int32_t>({1, 2}),
std::initializer_list<u_int32_t>({0, 3}),
REQUIRE_NOTHROW(to_pperm(std::initializer_list<uint32_t>({1, 2}),
std::initializer_list<uint32_t>({0, 3}),
5));
REQUIRE_NOTHROW(to_pperm<5, u_int32_t>({1, 2}, {0, 3}, 5));
REQUIRE_NOTHROW(PPerm<5, u_int32_t>({1, 2}, {0, 3}, 5));
REQUIRE_NOTHROW(to_pperm<5, uint32_t>({1, 2}, {0, 3}, 5));
REQUIRE_NOTHROW(PPerm<5, uint32_t>({1, 2}, {0, 3}, 5));
REQUIRE_NOTHROW(PPerm<>({1, 2}, {0, 3}, 5));
REQUIRE_NOTHROW(to_pperm({1, 2}, {0, 5}, 6));
REQUIRE_THROWS_AS(to_pperm({1, 2}, {0}, 5), LibsemigroupsException);
Expand Down

0 comments on commit 4aa16ae

Please sign in to comment.