Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ngallagher committed Apr 1, 2018
1 parent 2faed02 commit 922af1c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion snap-studio/work/demo/games/src/mario/core/GamePanel.snap
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ class GamePanel extends JPanel with Runnable {
// 'Z' is pressed.
if (key == KeyEvent.VK_Z) { // pause
if(panel.gameFreeze == false) {
panel.gameFreeze2 = true;
panel.gameFreeze = true;
player.setPaused(true);
panel.SM_22050_Hz.playPause();
}
Expand Down
6 changes: 3 additions & 3 deletions snap-studio/work/test/test/TestCaseRunner.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import util.concurrent.ScheduledThreadPoolExecutor;
import util.concurrent.ConcurrentHashMap;
import util.concurrent.CopyOnWriteArraySet;
import util.concurrent.LinkedBlockingQueue;
import common.store.FileStore;
import compile.StoreContext;
import compile.ResourceCompiler;
import core.FilePathConverter;
import common.store.FileStore;
import core.EmptyModel;
import core.module.FilePathConverter;
import core.scope.EmptyModel;

class TestCaseRunner {

Expand Down

0 comments on commit 922af1c

Please sign in to comment.