Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sebltm committed Dec 15, 2024
1 parent 003f842 commit 6f6c0b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/cloud/services/autoscaling/lifecyclehook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,10 @@ func TestLifecycleHookNeedsUpdate(t *testing.T) {
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
existing := tt.existing
expected := tt.expected
g := NewWithT(t)
g.Expect(lifecycleHookNeedsUpdate(&tt.existing, &tt.expected)).To(Equal(tt.wantUpdate))
g.Expect(lifecycleHookNeedsUpdate(&existing, &expected)).To(Equal(tt.wantUpdate))
})
}
}

0 comments on commit 6f6c0b8

Please sign in to comment.