Skip to content

Commit

Permalink
static modifier tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matteosz committed Sep 24, 2023
1 parent fe98b1e commit d062645
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public void getTransactionsTest() throws GeneralSecurityException, NoRollCallExc
}

@Test
/* 09.2023 - This test is often getting stuck, probably there's a deadlock or a general concurrency issue */
public void getTransactionsObservableTest() throws GeneralSecurityException, NoRollCallException {
// In this test the actual content of the transaction do not matter, only whether they concern
// user 1 or user 2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class ElectionRepositoryTest {
.setElectionVersion(ElectionVersion.OPEN_BALLOT)
.build();
private static final Application APPLICATION = ApplicationProvider.getApplicationContext();
private static AppDatabase appDatabase;
private AppDatabase appDatabase;
private static ElectionRepository repo;

@Before
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
@RunWith(AndroidJUnit4.class)
public class MeetingRepositoryTest {
private static final Application APPLICATION = ApplicationProvider.getApplicationContext();
private static AppDatabase appDatabase;
private AppDatabase appDatabase;
private static MeetingRepository meetingRepository;
private static final String LAO_ID = "LAO_ID";
private static final String ID = "ID";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
@RunWith(AndroidJUnit4.class)
public class WitnessingRepositoryTest {

private static AppDatabase appDatabase;
private AppDatabase appDatabase;
private static WitnessingRepository witnessingRepository;
private static RollCallRepository rollCallRepo;
private static ElectionRepository electionRepo;
Expand Down

0 comments on commit d062645

Please sign in to comment.