mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
fixed verify sample deck test failing locally on macOS
This commit is contained in:
parent
2e3271316a
commit
eaf29da63f
1 changed files with 1 additions and 1 deletions
|
@ -530,7 +530,7 @@ public class VerifyCardDataTest {
|
|||
int totalErrorFiles = 0;
|
||||
for (Path deckFile : filesList) {
|
||||
String deckName = rootPath.relativize(deckFile).toString();
|
||||
if (skipListHaveName(SKIP_LIST_SAMPLE_DECKS, deckName)) {
|
||||
if (!deckName.endsWith(".dck") || skipListHaveName(SKIP_LIST_SAMPLE_DECKS, deckName)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue