From bb7b87496ba40bed6499310ae180f15cbe8dbf1b Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 19 Jul 2023 11:18:10 -0500 Subject: [PATCH] fix image --- migrating-from-phpunit-guide.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/migrating-from-phpunit-guide.md b/migrating-from-phpunit-guide.md index 6b08012..e4f89d2 100644 --- a/migrating-from-phpunit-guide.md +++ b/migrating-from-phpunit-guide.md @@ -38,8 +38,6 @@ class ExampleTest extends TestCase Should look like this after running `--drift`: ```php - - test('true is true', function () { expect(true)->toBeTrue(); }); @@ -47,10 +45,6 @@ test('true is true', function () { The output will contain a summary of the conversion process, as well as a list of the files that were converted. -
- -
- While most of your tests should be converted automatically, and you should be able to run them without any issues, there are some cases where you may need to manually convert some of your tests. ---