@@ -51,7 +51,7 @@ describe("scheduleChanged", () => {
51
51
expect ( scheduleChanged ( autostop , formValues ) ) . toBe ( true ) ;
52
52
} ) ;
53
53
it ( "should be true if ttl values are different" , ( ) => {
54
- const autostop = { autostopEnabled : true , ttl : 1000 , ttl_bump : emptyTTL } ;
54
+ const autostop = { autostopEnabled : true , ttl : 1000 , ttl_bump : emptyTTL } ;
55
55
const formValues = {
56
56
autostartEnabled : false ,
57
57
...emptySchedule ,
@@ -62,7 +62,7 @@ describe("scheduleChanged", () => {
62
62
expect ( scheduleChanged ( autostop , formValues ) ) . toBe ( true ) ;
63
63
} ) ;
64
64
it ( "should be true if ttl_bump values are different" , ( ) => {
65
- const autostop = { autostopEnabled : true , ttl : 1000 , ttl_bump : emptyTTL } ;
65
+ const autostop = { autostopEnabled : true , ttl : 1000 , ttl_bump : emptyTTL } ;
66
66
const formValues = {
67
67
autostartEnabled : false ,
68
68
...emptySchedule ,
@@ -73,7 +73,7 @@ describe("scheduleChanged", () => {
73
73
expect ( scheduleChanged ( autostop , formValues ) ) . toBe ( true ) ;
74
74
} ) ;
75
75
it ( "should be false if all autostop values are the same" , ( ) => {
76
- const autostop = { autostopEnabled : true , ttl : 1000 , ttl_bump : emptyTTL } ;
76
+ const autostop = { autostopEnabled : true , ttl : 1000 , ttl_bump : emptyTTL } ;
77
77
const formValues = {
78
78
autostartEnabled : false ,
79
79
...emptySchedule ,
0 commit comments