aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com/pitchedapps/frost/internal/Internal.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/test/kotlin/com/pitchedapps/frost/internal/Internal.kt')
-rw-r--r--app/src/test/kotlin/com/pitchedapps/frost/internal/Internal.kt5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/src/test/kotlin/com/pitchedapps/frost/internal/Internal.kt b/app/src/test/kotlin/com/pitchedapps/frost/internal/Internal.kt
index b83cb62e..17ce847c 100644
--- a/app/src/test/kotlin/com/pitchedapps/frost/internal/Internal.kt
+++ b/app/src/test/kotlin/com/pitchedapps/frost/internal/Internal.kt
@@ -79,7 +79,10 @@ fun Any.assertComponentsNotEmpty() {
val result = it.call(this) as String
assertTrue(result.isNotEmpty(), "${it.name} returned empty string")
if (result.startsWith("https"))
- assertTrue(result.startsWith("https://"), "${it.name} has poorly formatted output $result")
+ assertTrue(
+ result.startsWith("https://"),
+ "${it.name} has poorly formatted output $result"
+ )
}
}
}