📄 Update year in file headers
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / notification / SoneLockedHandlerTest.kt
index 86e456d..4003dbb 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - SoneLockedHandlerTest.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - SoneLockedHandlerTest.kt - Copyright Â© 2019–2020 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -22,6 +22,7 @@ import net.pterodactylus.sone.core.event.*
 import net.pterodactylus.sone.data.*
 import net.pterodactylus.sone.data.impl.*
 import net.pterodactylus.sone.notify.*
+import net.pterodactylus.sone.utils.*
 import net.pterodactylus.util.notify.*
 import net.pterodactylus.util.template.*
 import org.hamcrest.MatcherAssert.*
@@ -62,7 +63,7 @@ class SoneLockedHandlerTest {
        @Test
        fun `notification is added to notification manager from command`() {
                eventBus.post(SoneLockedEvent(sone))
-               executor.scheduleds.single().command.run()
+               executor.scheduleds.single().command()
                assertThat(notificationManager.notifications, contains<Any>(notification))
        }
 
@@ -91,7 +92,7 @@ class SoneLockedHandlerTest {
        @Test
        fun `unlocking sone after showing the notification will remove the sone from the notification`() {
                eventBus.post(SoneLockedEvent(sone))
-               executor.scheduleds.single().command.run()
+               executor.scheduleds.single().command()
                eventBus.post(SoneUnlockedEvent(sone))
                assertThat(notification.elements, emptyIterable())
        }