Skip to content

Commit 65fea1c

Browse files
Update ApplyToFileHandlerTest.kt
1 parent 4a41aa1 commit 65fea1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/intellij/src/test/kotlin/com/github/continuedev/continueintellijextension/unit/ApplyToFileHandlerTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class ApplyToFileHandlerTest {
7474
eq("updateApplyState"),
7575
withArg { payload ->
7676
assert(payload is ApplyState)
77-
assert((payload as ApplyState).status == ApplyStateStatus.STREAMING)
77+
assert((payload as ApplyState).status == ApplyStateStatus.STREAMING.status)
7878
},
7979
any()
8080
)
@@ -85,7 +85,7 @@ class ApplyToFileHandlerTest {
8585
eq("updateApplyState"),
8686
withArg { payload ->
8787
assert(payload is ApplyState)
88-
assert((payload as ApplyState).status == ApplyStateStatus.CLOSED)
88+
assert((payload as ApplyState).status == ApplyStateStatus.CLOSED.status)
8989
},
9090
any()
9191
)

0 commit comments

Comments
 (0)