@@ -89,7 +89,7 @@ public function testPush(): void
89
89
$ this ->seeInDatabaseExtended ('queue_jobs ' , [
90
90
'queue ' => 'queue ' ,
91
91
$ this ->field ('payload ' ) => json_encode (['job ' => 'success ' , 'data ' => ['key ' => 'value ' ]]),
92
- 'available_at ' => ' 1703859316 ' ,
92
+ 'available_at ' => 1703859316 ,
93
93
]);
94
94
}
95
95
@@ -108,7 +108,7 @@ public function testPushWithPriority(): void
108
108
'queue ' => 'queue ' ,
109
109
$ this ->field ('payload ' ) => json_encode (['job ' => 'success ' , 'data ' => ['key ' => 'value ' ]]),
110
110
'priority ' => 'high ' ,
111
- 'available_at ' => ' 1703859316 ' ,
111
+ 'available_at ' => 1703859316 ,
112
112
]);
113
113
}
114
114
@@ -124,7 +124,7 @@ public function testPushAndPopWithPriority(): void
124
124
'queue ' => 'queue ' ,
125
125
$ this ->field ('payload ' ) => json_encode (['job ' => 'success ' , 'data ' => ['key1 ' => 'value1 ' ]]),
126
126
'priority ' => 'low ' ,
127
- 'available_at ' => ' 1703859316 ' ,
127
+ 'available_at ' => 1703859316 ,
128
128
]);
129
129
130
130
$ result = $ handler ->setPriority ('high ' )->push ('queue ' , 'success ' , ['key2 ' => 'value2 ' ]);
@@ -134,7 +134,7 @@ public function testPushAndPopWithPriority(): void
134
134
'queue ' => 'queue ' ,
135
135
$ this ->field ('payload ' ) => json_encode (['job ' => 'success ' , 'data ' => ['key2 ' => 'value2 ' ]]),
136
136
'priority ' => 'high ' ,
137
- 'available_at ' => ' 1703859316 ' ,
137
+ 'available_at ' => 1703859316 ,
138
138
]);
139
139
140
140
$ result = $ handler ->pop ('queue ' , ['high ' , 'low ' ]);
@@ -268,7 +268,7 @@ public function testFailedAndKeepJob(): void
268
268
'id ' => 2 ,
269
269
'connection ' => 'database ' ,
270
270
'queue ' => 'queue1 ' ,
271
- 'failed_at ' => ' 1703859316 ' ,
271
+ 'failed_at ' => 1703859316 ,
272
272
]);
273
273
}
274
274
0 commit comments