Skip to content

Commit

Permalink
Revert "feat(soft-assertions): Implement soft assertions for playwrig… (
Browse files Browse the repository at this point in the history
#1377)

Revert "feat(soft-assertions): Implement soft assertions for playwright-java (#1361)"

This reverts commit 86f929a.
  • Loading branch information
yury-s committed Sep 6, 2023
1 parent 4d91219 commit 8834877
Show file tree
Hide file tree
Showing 18 changed files with 13 additions and 986 deletions.
4 changes: 0 additions & 4 deletions playwright/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,5 @@
<groupId>com.microsoft.playwright</groupId>
<artifactId>driver-bundle</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
</dependency>
</dependencies>
</project>

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public APIResponseAssertionsImpl(APIResponse response) {
}

@Override
public APIResponseAssertionsImpl not() {
public APIResponseAssertions not() {
return new APIResponseAssertionsImpl(actual, !isNot);
}

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ private void expectTrue(String expression, String message, FrameExpectOptions op
}

@Override
public LocatorAssertionsImpl not() {
public LocatorAssertions not() {
return new LocatorAssertionsImpl(actualLocator, !isNot);
}

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void hasURL(Pattern pattern, HasURLOptions options) {
}

@Override
public PageAssertionsImpl not() {
public PageAssertions not() {
return new PageAssertionsImpl(actualPage, !isNot);
}
}
Expand Down
Loading

0 comments on commit 8834877

Please sign in to comment.