Skip to content

Commit

Permalink
removed debug settings for release
Browse files Browse the repository at this point in the history
  • Loading branch information
wpw503 committed Feb 5, 2021
1 parent 31cffcd commit 3b54cf4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static void main(String[] arg) {
//Settings.setResolution(size.width, size.height);
config.width = 1920;
config.height = 1080;
config.fullscreen = false;
config.fullscreen = true;
config.resizable = false;
config.vSyncEnabled = false;
config.foregroundFPS = 60;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public void staminaUsageTest() {
Assert.assertTrue(oldStamina > boat.getStamina());
}

// These tests have been verified in every members IDE however they fail on github so assertions have been removed.
@Test
public void collisionTest() {
Boat b = new Boat(BoatType.FAST, l, "");
Expand All @@ -75,7 +74,6 @@ public void collisionTest() {
Assert.assertTrue(initialHealth > b.getHealth());
}

// These tests have been verified in every members IDE however they fail on github so assertions have been removed.
@Test
public void gameOverTest() {
DragonBoatRace game = new DragonBoatRace();
Expand Down

0 comments on commit 3b54cf4

Please sign in to comment.