Skip to content

Commit

Permalink
Fix skipped test name (#1391)
Browse files Browse the repository at this point in the history
* Fix skipped test name

The test `stub.authorization.test_authorization.TestAuthenticationSchemes.test_custom_scheme_empty` was
rename to `stub.authorization.test_authorization.TestAuthenticationSchemesV4x4.test_custom_scheme_empty` in
the PR neo4j-drivers/testkit#542.
This change is causing the pipeline fails for java.

* Update testkit-backend/src/main/java/neo4j/org/testkit/backend/messages/requests/StartTest.java

Co-authored-by: Dmitriy Tverdiakov <11927660+injectives@users.noreply.github.com>

---------

Co-authored-by: Dmitriy Tverdiakov <11927660+injectives@users.noreply.github.com>
  • Loading branch information
bigmontz and injectives committed Mar 11, 2023
1 parent fa6e4f8 commit bf4d017
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ public class StartTest implements TestkitRequest {
skipMessage);
skipMessage = "This test needs updating to implement expected behaviour";
COMMON_SKIP_PATTERN_TO_REASON.put("^.*\\.TestAuthenticationSchemes\\.test_custom_scheme_empty$", skipMessage);
COMMON_SKIP_PATTERN_TO_REASON.put(
"^.*\\.TestAuthenticationSchemes[^.]+\\.test_custom_scheme_empty$", skipMessage);
skipMessage = "Driver does not implement optimization for qid in explicit transaction";
COMMON_SKIP_PATTERN_TO_REASON.put(
"^.*\\.TestOptimizations\\.test_uses_implicit_default_arguments$", skipMessage);
Expand Down

0 comments on commit bf4d017

Please sign in to comment.