aboutsummaryrefslogtreecommitdiff
path: root/internal/db/backup_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/backup_test.go')
-rw-r--r--internal/db/backup_test.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/internal/db/backup_test.go b/internal/db/backup_test.go
index 4c5e4752..9d2d9403 100644
--- a/internal/db/backup_test.go
+++ b/internal/db/backup_test.go
@@ -31,7 +31,7 @@ func TestDumpAndImport(t *testing.T) {
}
t.Parallel()
- const wantTables = 7
+ const wantTables = 8
if len(Tables) != wantTables {
t.Fatalf("New table has added (want %d got %d), please add new tests for the table and update this check", wantTables, len(Tables))
}
@@ -190,6 +190,13 @@ func setupDBToDump(t *testing.T, db *gorm.DB) {
}),
CreatedUnix: 1588568886,
},
+
+ &Notice{
+ ID: 1,
+ Type: NoticeTypeRepository,
+ Description: "This is a notice",
+ CreatedUnix: 1588568886,
+ },
}
for _, val := range vals {
err := db.Create(val).Error