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. ---