We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d54d6f0 commit 84dfed8Copy full SHA for 84dfed8
1 file changed
tests/Messenger/Transport/AzureTransportTest.php
@@ -574,8 +574,8 @@ public function testSendWithBrokerPropertiesStampAndDelayStamp(): void
574
self::assertArrayHasKey('brokerproperties', $options['normalized_headers']);
575
$now = new \DateTime('UTC');
576
$today = $now->format('Y-m-d');
577
- $regexp = '/BrokerProperties: {"ScheduledEnqueueTimeUtc":"'.$today.' \d\d:\d\d:\d\d"}/';
578
- $this->assertMatchesRegularExpression($regexp, $options['normalized_headers']['brokerproperties'][0]);
+ $regexp = '/BrokerProperties: {"ScheduledEnqueueTimeUtc":"' . $today . ' \d\d:\d\d:\d\d"}/';
+ self::assertMatchesRegularExpression($regexp, $options['normalized_headers']['brokerproperties'][0]);
579
580
return new MockResponse();
581
});
0 commit comments