Skip to content

Commit bfada6d

Browse files
Rectorsimonschaufi
authored andcommitted
[TASK] Turn accidentally flipped assert order to right one, with expected expr to left
Applied rule: Rector\PHPUnit\CodeQuality\Rector\MethodCall\FlipAssertRector
1 parent 211d968 commit bfada6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Unit/Application/TYPO3/CMSTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected function setUp(): void
3535
public function setContextSuccessfully(): void
3636
{
3737
$this->subject->setContext('Production');
38-
self::assertSame($this->subject->getContext(), 'Production');
38+
self::assertSame('Production', $this->subject->getContext());
3939
}
4040

4141
/**

0 commit comments

Comments
 (0)