diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2024-06-06 11:49:47 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-06 11:49:47 +1000 |
commit | dc619eea46194955ede129b6a7125be2c1e8fa74 (patch) | |
tree | faa23cfef9c0da8e9870fef0c7c1e71e13d9f74d /src/test | |
parent | 4ef946f824817e91bdf9c2e0ae4f201e5c669f63 (diff) | |
download | skyhanni-dc619eea46194955ede129b6a7125be2c1e8fa74.tar.gz skyhanni-dc619eea46194955ede129b6a7125be2c1e8fa74.tar.bz2 skyhanni-dc619eea46194955ede129b6a7125be2c1e8fa74.zip |
Backend: Classes -> Objects with annotation (#1982)
Co-authored-by: ThatGravyBoat <thatgravyboat@gmail.com>
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/java/at/hannibal2/skyhanni/test/garden/VisitorListenerTest.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/at/hannibal2/skyhanni/test/garden/VisitorListenerTest.kt b/src/test/java/at/hannibal2/skyhanni/test/garden/VisitorListenerTest.kt index f8f952bbe..78304f0ae 100644 --- a/src/test/java/at/hannibal2/skyhanni/test/garden/VisitorListenerTest.kt +++ b/src/test/java/at/hannibal2/skyhanni/test/garden/VisitorListenerTest.kt @@ -27,7 +27,7 @@ class VisitorListenerTest { mockkObject(VisitorAPI) every { VisitorAPI.addVisitor(any()) } returns true - listener = VisitorListener() + listener = VisitorListener } @Test |