aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/kotlin/test/pl/treksoft/kvision/modal/AlertSpec.kt2
-rw-r--r--src/test/kotlin/test/pl/treksoft/kvision/modal/ConfirmSpec.kt2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/kotlin/test/pl/treksoft/kvision/modal/AlertSpec.kt b/src/test/kotlin/test/pl/treksoft/kvision/modal/AlertSpec.kt
index 15ca9b50..d34bbb2b 100644
--- a/src/test/kotlin/test/pl/treksoft/kvision/modal/AlertSpec.kt
+++ b/src/test/kotlin/test/pl/treksoft/kvision/modal/AlertSpec.kt
@@ -22,7 +22,7 @@ class AlertSpec : DomSpec {
val title = document.getElementById("test")?.let { jQuery(it).find(".modal-title").html() }
assertEquals("Alert caption", title, "Should render alert window with correct caption")
val body = document.getElementById("test")?.let { jQuery(it).find(".modal-body").html() }
- assertEquals("<span>Alert content</span>", body, "Should render alert window with correct content")
+ assertEquals("<div>Alert content</div>", body, "Should render alert window with correct content")
val footer = document.getElementById("test")?.let { jQuery(it).find(".modal-footer").html() }
assertEquals(
"<button class=\"btn btn-primary\" type=\"button\"><span class=\"glyphicon glyphicon-ok\"></span> OK</button>",
diff --git a/src/test/kotlin/test/pl/treksoft/kvision/modal/ConfirmSpec.kt b/src/test/kotlin/test/pl/treksoft/kvision/modal/ConfirmSpec.kt
index 0d3bbc72..06b71720 100644
--- a/src/test/kotlin/test/pl/treksoft/kvision/modal/ConfirmSpec.kt
+++ b/src/test/kotlin/test/pl/treksoft/kvision/modal/ConfirmSpec.kt
@@ -22,7 +22,7 @@ class ConfirmSpec : DomSpec {
val title = document.getElementById("test")?.let { jQuery(it).find(".modal-title").html() }
assertEquals("Confirm caption", title, "Should render confirm window with correct caption")
val body = document.getElementById("test")?.let { jQuery(it).find(".modal-body").html() }
- assertEquals("<span>Confirm content</span>", body, "Should render confirm window with correct content")
+ assertEquals("<div>Confirm content</div>", body, "Should render confirm window with correct content")
val buttons = document.getElementById("test")?.let { jQuery(it).find(".modal-footer").find("button") }
assertEquals(2, buttons?.length, "Should render confirm window with two buttons")
val button = document.getElementById("test")?.let { jQuery(it).find(".modal-footer").find("button")[0] }