Skip to content

Commit

Permalink
ugly but working fix for login -> logout -> logout tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Flips01 committed Dec 9, 2018
1 parent b0cb5e7 commit 838dc1a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/test/endToEnd/AuthenticationTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ public void setup() throws Exception {

@After
public void tearDown() throws Exception {
logout();
try {
logout();
} catch (Exception e) {}
}

@Parameterized.Parameters(
Expand Down Expand Up @@ -234,7 +236,9 @@ public void setup() throws Exception {

@After
public void tearDown() throws Exception {
logout();
try {
logout();
} catch (Exception e) {}
}

@Parameterized.Parameters(
Expand Down

0 comments on commit 838dc1a

Please sign in to comment.