We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a22f156 commit feb0bfbCopy full SHA for feb0bfb
pfSense-pkg-RESTAPI/files/usr/local/pkg/RESTAPI/Tests/APIModelsSystemTimezoneTestCase.inc
@@ -16,15 +16,15 @@ class APIModelsSystemTimezoneTestCase extends TestCase {
16
17
# Ensure the timezone was updated correctly
18
$zoneinfo = file_get_contents('/var/db/zoneinfo');
19
- $this->assert_equals($zoneinfo, 'America/Denver');
+ $this->assert_equals($zoneinfo, 'America/Denver'.PHP_EOL);
20
21
# Update the timezone again
22
$timezone = new SystemTimezone(timezone: 'UTC');
23
$timezone->update();
24
25
26
27
- $this->assert_equals($zoneinfo, 'UTC');
+ $this->assert_equals($zoneinfo, 'UTC'.PHP_EOL);
28
}
29
30
/**
0 commit comments