Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Sep 18, 2023
1 parent 9d11c79 commit aaab3f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/backend/newsAlerts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ func newsAlertFile(id int32) *model.Files {
Name: fmt.Sprintf("src_%d.png", id),
Path: "news/sources",
Downloads: 1,
URL: sql.NullString{Valid: false},
Downloaded: sql.NullBool{Bool: true, Valid: true},
URL: null.String{},
Downloaded: null.BoolFrom(true),
}
}
func alert1() *model.NewsAlert {
Expand Down

0 comments on commit aaab3f8

Please sign in to comment.