Skip to content

Commit

Permalink
Missing err check
Browse files Browse the repository at this point in the history
  • Loading branch information
dantecatalfamo committed Sep 18, 2024
1 parent 7a53c12 commit 3f0bcaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/datastore/mysql/maintained_apps_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ func testListAvailableApps(t *testing.T, ds *Datastore) {

user := test.NewUser(t, ds, "Zaphod Beeblebrox", "[email protected]", true)
team1, err := ds.NewTeam(ctx, &fleet.Team{Name: "Team 1"})
require.NoError(t, err)
team2, err := ds.NewTeam(ctx, &fleet.Team{Name: "Team 2"})

require.NoError(t, err)

err = ds.UpsertMaintainedApp(ctx, &fleet.MaintainedApp{
Expand Down

0 comments on commit 3f0bcaf

Please sign in to comment.