Skip to content

Commit e40328c

Browse files
committed
firewalldb: let test times have intuitive order
testTime1 should be before testTime2 otherwise it can lead to confusion.
1 parent b99a4f8 commit e40328c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

firewalldb/actions_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
)
1515

1616
var (
17-
testTime1 = time.Unix(32100, 0)
18-
testTime2 = time.Unix(12300, 0)
17+
testTime1 = time.Unix(12300, 0)
18+
testTime2 = time.Unix(32100, 0)
1919
)
2020

2121
// TestActionStorage tests that the ActionsListDB CRUD logic.

0 commit comments

Comments
 (0)