diff --git a/tests/unit/framework/i18n/FormatterTest.php b/tests/unit/framework/i18n/FormatterTest.php index ed5ab331c04..fc31fa0bb4f 100644 --- a/tests/unit/framework/i18n/FormatterTest.php +++ b/tests/unit/framework/i18n/FormatterTest.php @@ -78,7 +78,7 @@ public function testAsCurrency() $value = '123.456'; $this->assertSame("$123.46", $this->formatter->asCurrency($value)); $value = '-123456.123'; - $this->assertSame("($123,456.12)", $this->formatter->asCurrency($value)); + $this->assertSame("-$123,456.12", $this->formatter->asCurrency($value)); $this->assertSame($this->formatter->nullDisplay, $this->formatter->asCurrency(null)); }