Skip to content

Commit f9bf285

Browse files
committed
merge fix
1 parent 13523bc commit f9bf285

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/unit/Mage/Adminhtml/Helper/Dashboard/DataTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ public function testCountStores(): void
5757
public function testGetDatePeriods(): void
5858
{
5959
$expectedResult = [
60-
'24h' => $this->subject->__('Last 24 Hours'),
61-
'7d' => $this->subject->__('Last 7 Days'),
62-
'1m' => $this->subject->__('Current Month'),
63-
'3m' => $this->subject->__('Last 3 Months'),
64-
'6m' => $this->subject->__('Last 6 Months'),
65-
'1y' => $this->subject->__('YTD'),
66-
'2y' => $this->subject->__('2YTD'),
60+
'24h' => self::$subject->__('Last 24 Hours'),
61+
'7d' => self::$subject->__('Last 7 Days'),
62+
'1m' => self::$subject->__('Current Month'),
63+
'3m' => self::$subject->__('Last 3 Months'),
64+
'6m' => self::$subject->__('Last 6 Months'),
65+
'1y' => self::$subject->__('YTD'),
66+
'2y' => self::$subject->__('2YTD'),
6767
];
6868
static::assertSame($expectedResult, self::$subject->getDatePeriods());
6969
}

0 commit comments

Comments
 (0)