Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolay Nikolov <[email protected]>
  • Loading branch information
nickeynikolovv committed Nov 15, 2024
1 parent d4eff40 commit 651f075
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,14 +186,14 @@ void approveNFT(final Boolean approve) throws Exception {
}

@Test
void setApprovalForAll() throws Exception {
void TESTsetApprovalForAll() throws Exception {
// Given
String testFlagValue = System.getProperty("testFlag", "false");
boolean testFlag = Boolean.parseBoolean(testFlagValue);

System.out.println(testFlagValue);
System.out.println("TEST FLAG IS SET TO " + testFlagValue);
assertThat(testFlag).isFalse();
assertThat(testFlag).isTrue();
// if(testFlag){
// System.out.println("TEST FLAG IS SET TO TRUE");
// } else {
Expand Down

0 comments on commit 651f075

Please sign in to comment.