You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/toolkit/jetbrains-rider/tst/software/aws/toolkits/jetbrains/services/lambda/completion/DotNetHandlerCompletionTest.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ class DotNetHandlerCompletionTest : BaseTestWithSolution() {
32
32
@Test(description ="Check a single handler is shown in lookup when one is defined in a project.")
33
33
@TestEnvironment
34
34
@Solution("SamHelloWorldApp")
35
-
funtestDetermineHandlers_SingleHandler() {
35
+
funtestDetermineHandlersSingleHandler() {
36
36
val handlers =DotNetHandlerCompletion().getHandlersFromBackend(project)
37
37
38
38
assertThat(handlers.size).isEqualTo(1)
@@ -45,7 +45,7 @@ class DotNetHandlerCompletionTest : BaseTestWithSolution() {
45
45
@Test(enabled =false, description ="Check all handlers are show in completion lookup when multiple handlers are defined in a project.")
46
46
@TestEnvironment
47
47
@Solution("SamMultipleHandlersApp")
48
-
funtestDetermineHandlers_MultipleHandlers() {
48
+
funtestDetermineHandlersMultipleHandlers() {
49
49
val handlers =DotNetHandlerCompletion().getHandlersFromBackend(project).sortedBy { it.handler }
0 commit comments