diff options
Diffstat (limited to 'passgen/diceware/src')
-rw-r--r-- | passgen/diceware/src/test/kotlin/app/passwordstore/passgen/diceware/WordListParserTest.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passgen/diceware/src/test/kotlin/app/passwordstore/passgen/diceware/WordListParserTest.kt b/passgen/diceware/src/test/kotlin/app/passwordstore/passgen/diceware/WordListParserTest.kt index bcb85cb4..c9757351 100644 --- a/passgen/diceware/src/test/kotlin/app/passwordstore/passgen/diceware/WordListParserTest.kt +++ b/passgen/diceware/src/test/kotlin/app/passwordstore/passgen/diceware/WordListParserTest.kt @@ -30,7 +30,7 @@ class WordListParserTest { companion object { fun getDefaultWordList(): InputStream { - return requireNotNull(this::class.java.classLoader) + return requireNotNull(this::class.java.classLoader) { "Null classloader????" } .getResourceAsStream("diceware_wordlist.txt") } } |