From 9af584412583be260ed3a179a95c7adfe48124ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 28 Dec 2021 11:54:37 +0100 Subject: [PATCH] Fix: Do not use deprecated assertion --- test/Integration/Command/NormalizeCommand/AbstractTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Integration/Command/NormalizeCommand/AbstractTestCase.php b/test/Integration/Command/NormalizeCommand/AbstractTestCase.php index ef3201b7..3de20954 100644 --- a/test/Integration/Command/NormalizeCommand/AbstractTestCase.php +++ b/test/Integration/Command/NormalizeCommand/AbstractTestCase.php @@ -143,7 +143,7 @@ final protected static function assertComposerLockFileExists(Test\Util\State $st final protected static function assertComposerLockFileNotExists(Test\Util\State $state): void { - self::assertFileNotExists($state->composerLockFile()->path()); + self::assertFileDoesNotExist($state->composerLockFile()->path()); } final protected static function assertComposerLockFileFresh(Test\Util\State $state): void