Skip to content

Commit b863dd6

Browse files
committed
fix: lints
1 parent f7fa078 commit b863dd6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

oktmo/oktmo_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import (
88

99
func Test_Validete(t *testing.T) {
1010
require.Panics(t, func() {
11-
Validate("")
11+
_, err := Validate("")
12+
require.NoError(t, err)
1213
})
1314
}
1415

swift/swift_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import (
88

99
func Test_Validete(t *testing.T) {
1010
require.Panics(t, func() {
11-
Validate("")
11+
_, err := Validate("")
12+
require.NoError(t, err)
1213
})
1314
}
1415

0 commit comments

Comments
 (0)