We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d9e819 commit 8b9698dCopy full SHA for 8b9698d
src/commonTest/kotlin/suite/TestSuiteSettings.kt
@@ -45,7 +45,9 @@ internal class TestSuiteSettings {
45
userData = json { "customUserData" to 42.0 }
46
)
47
setSettings(copy).wait() shouldEqual TaskStatus.Published
48
- getSettings() shouldEqual copy
+ getSettings() shouldEqual copy.copy(
49
+ userData = json { "customUserData" to 42 } // Round value expected to deserialize as int
50
+ )
51
}
52
53
0 commit comments