diff --git a/gemp-lotr/gemp-lotr-server/src/test/java/com/gempukku/lotro/game/formats/LotroFormatLibraryTest.java b/gemp-lotr/gemp-lotr-server/src/test/java/com/gempukku/lotro/game/formats/LotroFormatLibraryTest.java index 5c409132d..2971e24d6 100644 --- a/gemp-lotr/gemp-lotr-server/src/test/java/com/gempukku/lotro/game/formats/LotroFormatLibraryTest.java +++ b/gemp-lotr/gemp-lotr-server/src/test/java/com/gempukku/lotro/game/formats/LotroFormatLibraryTest.java @@ -1,9 +1,6 @@ package com.gempukku.lotro.game.formats; -import com.gempukku.lotro.game.DeckInvalidException; import com.gempukku.lotro.game.DefaultAdventureLibrary; -import com.gempukku.lotro.game.LotroCardBlueprintLibrary; -import com.gempukku.lotro.game.LotroFormat; import org.junit.Test; public class LotroFormatLibraryTest { @@ -11,11 +8,4 @@ public class LotroFormatLibraryTest { public void testLoad() { LotroFormatLibrary library = new LotroFormatLibrary(new DefaultAdventureLibrary(), null); } - - @Test(expected = DeckInvalidException.class) - public void legolasGreenleafNotLegalInStandard() throws DeckInvalidException { - LotroFormatLibrary library = new LotroFormatLibrary(new DefaultAdventureLibrary(), new LotroCardBlueprintLibrary()); - LotroFormat standard = library.getFormat("standard"); - standard.validateCard("1_50"); - } }