Skip to content

Commit 7a40615

Browse files
firewalldb: rename kv stores migration tests
As the firewalldb migration will include more than just the migration of the kvstore data, we rename the migration tests that only migrate the kvstore data to make it clearer which tests only focus on migrating kv entries.
1 parent 55f5682 commit 7a40615

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

firewalldb/sql_migration_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -234,23 +234,23 @@ func TestFirewallDBMigration(t *testing.T) {
234234
},
235235
},
236236
{
237-
name: "global entries",
237+
name: "global kv entries",
238238
populateDB: globalEntries,
239239
},
240240
{
241-
name: "session specific entries",
241+
name: "session specific kv entries",
242242
populateDB: sessionSpecificEntries,
243243
},
244244
{
245-
name: "feature specific entries",
245+
name: "feature specific kv entries",
246246
populateDB: featureSpecificEntries,
247247
},
248248
{
249-
name: "all entry combinations",
249+
name: "all kv entry combinations",
250250
populateDB: allEntryCombinations,
251251
},
252252
{
253-
name: "random entries",
253+
name: "random kv entries",
254254
populateDB: randomKVEntries,
255255
},
256256
}

0 commit comments

Comments
 (0)