Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
elefeint committed Aug 1, 2024
1 parent 49d7123 commit 82ea015
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/test_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,9 @@ TEST_CASE("Test endpoint fails when token is bad",
auto status = service.Test(nullptr, &request, &response);
REQUIRE_NO_FAIL(status);
CHECK_THAT(status.error_message(),
Catch::Matchers::ContainsSubstring("UNAUTHENTICATED"));
Catch::Matchers::ContainsSubstring("not authenticated"));
CHECK_THAT(status.error_message(),
Catch::Matchers::ContainsSubstring("UNAUTHENTICATED"));
Catch::Matchers::ContainsSubstring("not authenticated"));
}

TEST_CASE(
Expand Down

0 comments on commit 82ea015

Please sign in to comment.