diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2018-07-16 02:19:16 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2018-07-16 02:19:22 +0200 |
commit | d1b3c9c9ff575fe0af010e7c335945f69232a2db (patch) | |
tree | 866ad9f462b5249550301653a1a682a5356d41a6 /backend/src/test/kotlin | |
parent | Rework resources representations (diff) | |
download | seven-wonders-d1b3c9c9ff575fe0af010e7c335945f69232a2db.tar.gz seven-wonders-d1b3c9c9ff575fe0af010e7c335945f69232a2db.tar.bz2 seven-wonders-d1b3c9c9ff575fe0af010e7c335945f69232a2db.zip |
Make GameDefinitionLoader a singleton object
Diffstat (limited to 'backend/src/test/kotlin')
-rw-r--r-- | backend/src/test/kotlin/org/luxons/sevenwonders/lobby/LobbyTest.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/test/kotlin/org/luxons/sevenwonders/lobby/LobbyTest.kt b/backend/src/test/kotlin/org/luxons/sevenwonders/lobby/LobbyTest.kt index 3abdde3b..84cef934 100644 --- a/backend/src/test/kotlin/org/luxons/sevenwonders/lobby/LobbyTest.kt +++ b/backend/src/test/kotlin/org/luxons/sevenwonders/lobby/LobbyTest.kt @@ -223,7 +223,7 @@ class LobbyTest { @JvmStatic @BeforeClass fun loadDefinition() { - gameDefinition = GameDefinitionLoader().gameDefinition + gameDefinition = GameDefinitionLoader.gameDefinition } } } |