File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
internal/controllers/machinehealthcheck Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -876,13 +876,11 @@ func TestMachineHealthCheck_Reconcile(t *testing.T) {
876
876
})
877
877
878
878
t .Run ("when a Machine has no Node ref for longer than the NodeStartupTimeout" , func (t * testing.T ) {
879
- // FIXME: Resolve flaky/failing test
880
- t .Skip ("skipping until made stable" )
881
879
g := NewWithT (t )
882
880
cluster := createCluster (g , ns .Name )
883
881
884
882
mhc := newMachineHealthCheck (cluster .Namespace , cluster .Name )
885
- mhc .Spec .NodeStartupTimeout = & metav1.Duration {Duration : time .Second }
883
+ mhc .Spec .NodeStartupTimeout = & metav1.Duration {Duration : 5 * time .Second }
886
884
887
885
g .Expect (env .Create (ctx , mhc )).To (Succeed ())
888
886
defer func (do ... client.Object ) {
@@ -976,12 +974,11 @@ func TestMachineHealthCheck_Reconcile(t *testing.T) {
976
974
})
977
975
978
976
t .Run ("when a Machine's Node has gone away" , func (t * testing.T ) {
979
- // FIXME: Resolve flaky/failing test
980
- t .Skip ("skipping until made stable" )
981
977
g := NewWithT (t )
982
978
cluster := createCluster (g , ns .Name )
983
979
984
980
mhc := newMachineHealthCheck (cluster .Namespace , cluster .Name )
981
+ mhc .Spec .NodeStartupTimeout = & metav1.Duration {Duration : 5 * time .Second }
985
982
986
983
g .Expect (env .Create (ctx , mhc )).To (Succeed ())
987
984
defer func (do ... client.Object ) {
You can’t perform that action at this time.
0 commit comments