Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yashmehrotra committed Sep 24, 2024
1 parent b22f616 commit 2a08b5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/fixtures/dummy/all.go
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ func GenerateDynamicDummyData(db *gorm.DB) DummyData {
ExternalId: "dummy/logistics-db",
Type: "Database",
Status: types.ComponentStatusUnhealthy,
StatusReason: "database not accepting connections",
StatusReason: types.NullString{String: "database not accepting connections"},
ParentId: &LogisticsAPI.ID,
Path: Logistics.ID.String() + "." + LogisticsAPI.ID.String(),
CreatedAt: DummyCreatedAt,
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/dummy/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ var LogisticsDB = models.Component{
ExternalId: "dummy/logistics-db",
Type: "Database",
Status: types.ComponentStatusUnhealthy,
StatusReason: "database not accepting connections",
StatusReason: types.NullString{String: "database not accepting connections"},
ParentId: &LogisticsAPI.ID,
Path: Logistics.ID.String() + "." + LogisticsAPI.ID.String(),
CreatedAt: DummyCreatedAt,
Expand Down

0 comments on commit 2a08b5d

Please sign in to comment.