@@ -41,7 +41,8 @@ public function test_generate_single_table_backup()
41
41
{
42
42
dump ([3 => __FUNCTION__ ]);
43
43
44
- Carbon::setTestNow (now ());
44
+ $ dateTime = Carbon::parse ("2024-01-01 12:12:08 " );
45
+ Carbon::setTestNow ($ dateTime );
45
46
46
47
$ tableName = 'fathers ' ;
47
48
BackupTables::generateBackup ($ tableName );
@@ -105,7 +106,8 @@ public function test_generate_single_table_backup_then_another_table_backup_late
105
106
{
106
107
dump ([5 => __FUNCTION__ ]);
107
108
108
- Carbon::setTestNow (now ());
109
+ $ dateTime = Carbon::parse ("2024-01-01 12:12:08 " );
110
+ Carbon::setTestNow ($ dateTime );
109
111
110
112
$ fatherTable = 'fathers ' ;
111
113
$ sonTable = 'sons ' ;
@@ -156,7 +158,9 @@ public function test_generate_multiple_table_backup()
156
158
{
157
159
dump ([6 => __FUNCTION__ ]);
158
160
159
- Carbon::setTestNow (now ());
161
+ $ dateTime = Carbon::parse ("2024-01-01 12:12:08 " );
162
+ Carbon::setTestNow ($ dateTime );
163
+
160
164
$ tableName = 'fathers ' ;
161
165
$ tableName2 = 'sons ' ;
162
166
@@ -197,7 +201,9 @@ public function test_generate_single_table_backup_with_with_custom_format()
197
201
{
198
202
dump ([7 => __FUNCTION__ ]);
199
203
200
- Carbon::setTestNow (now ());
204
+ $ dateTime = Carbon::parse ("2024-01-01 12:12:08 " );
205
+ Carbon::setTestNow ($ dateTime );
206
+
201
207
$ tableName = 'fathers ' ;
202
208
$ customFormat = 'Y_d_m_H_i ' ;
203
209
@@ -214,7 +220,8 @@ public function test_generate_single_table_backup_with_with_custom_format()
214
220
//{
215
221
//dump([8 => __FUNCTION__]);
216
222
217
- // Carbon::setTestNow();
223
+ //$dateTime = Carbon::parse("2024-01-01 12:12:08");
224
+ //Carbon::setTestNow($dateTime);
218
225
// $tableName = Father::class;
219
226
// $tableName2 = Son::class;
220
227
//
0 commit comments