Fix naming of generated exception

This commit is contained in:
Jan-Erik Rediger 2022-09-14 18:05:24 +02:00 committed by Ryan VanderMeulen
parent 85f52e5329
commit 29e871086b
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import org.mozilla.experiments.nimbus.internal.NimbusException
class NimbusSetupKtTest {
@Test
fun `WHEN error is reportable THEN return true`() {
val error = NimbusException.IOException("bad error")
val error = NimbusException.IoException("bad error")
assertTrue(error.isReportableError())
}