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 eebad6b commit 48540f5Copy full SHA for 48540f5
src/test/kotlin/infrastructure/api/RoomApiTest.kt
@@ -133,8 +133,13 @@ class RoomApiTest : StringSpec({
133
insertRoom(roomEntry)
134
val response = client.get("/api/v1/rooms/data/${roomEntry.id}")
135
response shouldHaveStatus HttpStatusCode.OK
136
- Json.decodeFromString<ApiResponses.ResponseEntryList<ApiResponses.ResponseTimedEntry<
137
- RoomEnvironmentalData,>,>,>(
+ Json.decodeFromString<
+ ApiResponses.ResponseEntryList<
138
+ ApiResponses.ResponseTimedEntry<
139
+ RoomEnvironmentalData,
140
+ >,
141
142
+ >(
143
response.bodyAsText(),
144
).total shouldBe 0
145
}
0 commit comments