diff options
author | Robert Jaros <rjaros@finn.pl> | 2018-03-23 12:41:57 +0100 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2018-03-23 12:41:57 +0100 |
commit | 5f8790e7127df07a17f51e5641be66b7654dbb33 (patch) | |
tree | 41a407628a6c3f26065fdb2cc54922f2320a2250 /src | |
parent | 0041051ee910aa90b917309fb5cc5d7cd60176de (diff) | |
download | kvision-5f8790e7127df07a17f51e5641be66b7654dbb33.tar.gz kvision-5f8790e7127df07a17f51e5641be66b7654dbb33.tar.bz2 kvision-5f8790e7127df07a17f51e5641be66b7654dbb33.zip |
Style fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/test/kotlin/test/pl/treksoft/kvision/dropdown/ContextMenuSpec.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/kotlin/test/pl/treksoft/kvision/dropdown/ContextMenuSpec.kt b/src/test/kotlin/test/pl/treksoft/kvision/dropdown/ContextMenuSpec.kt index 748f7c3c..f06a3c96 100644 --- a/src/test/kotlin/test/pl/treksoft/kvision/dropdown/ContextMenuSpec.kt +++ b/src/test/kotlin/test/pl/treksoft/kvision/dropdown/ContextMenuSpec.kt @@ -17,7 +17,7 @@ class ContextMenuSpec : DomSpec { fun render() { run { val root = Root("test", true) - val m = ContextMenu() { + val m = ContextMenu { link("a", "b") link("c", "d") } @@ -37,7 +37,7 @@ class ContextMenuSpec : DomSpec { fun positionMenu() { run { val root = Root("test", true) - val m = ContextMenu() { + val m = ContextMenu { link("a", "b") link("c", "d") } |