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: android/app/src/androidTest/kotlin/net/mullvad/mullvadvpn/compose/dialog/DeleteCustomListConfirmationDialogTest.kt
+3-3
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ class DeleteCustomListConfirmationDialogTest {
32
32
val name =CustomListName.fromString("List should be deleted")
33
33
setContentWithTheme {
34
34
DeleteCustomListConfirmationDialog(
35
-
state =DeleteCustomListUiState(name = name, deleteError =null),
35
+
state =DeleteCustomListUiState(name = name, deleteError =null)
36
36
)
37
37
}
38
38
@@ -49,7 +49,7 @@ class DeleteCustomListConfirmationDialogTest {
49
49
setContentWithTheme {
50
50
DeleteCustomListConfirmationDialog(
51
51
state =DeleteCustomListUiState(name = name, deleteError =null),
52
-
onDelete = mockedOnDelete
52
+
onDelete = mockedOnDelete,
53
53
)
54
54
}
55
55
@@ -69,7 +69,7 @@ class DeleteCustomListConfirmationDialogTest {
69
69
setContentWithTheme {
70
70
DeleteCustomListConfirmationDialog(
71
71
state =DeleteCustomListUiState(name = name, deleteError =null),
Copy file name to clipboardexpand all lines: android/app/src/androidTest/kotlin/net/mullvad/mullvadvpn/compose/dialog/ResetServerIPOverridesConfirmationDialogTest.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ class ResetServerIPOverridesConfirmationDialogTest {
34
34
setContentWithTheme {
35
35
ResetServerIpOverridesConfirmationDialog(
36
36
onNavigateBack = clickHandler,
37
-
onClearAllOverrides = {}
37
+
onClearAllOverrides = {},
38
38
)
39
39
}
40
40
@@ -54,7 +54,7 @@ class ResetServerIPOverridesConfirmationDialogTest {
0 commit comments