Skip to content

Commit 1fd7015

Browse files
#26967: Fix for queue numeric argument conversion - integration test update.
1 parent 69eca07 commit 1fd7015

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev/tests/integration/testsuite/Magento/Framework/MessageQueue/TopologyTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function testTopologyInstallation(array $expectedConfig, array $bindingCo
4848
$this->assertArrayHasKey($name, $this->declaredExchanges);
4949
unset($this->declaredExchanges[$name]['message_stats']);
5050
unset($this->declaredExchanges[$name]['user_who_performed_action']);
51-
$this->assertEquals(
51+
$this->assertSame(
5252
$expectedConfig,
5353
$this->declaredExchanges[$name],
5454
'Invalid exchange configuration: ' . $name
@@ -59,7 +59,7 @@ public function testTopologyInstallation(array $expectedConfig, array $bindingCo
5959
unset($value['properties_key']);
6060
return $value;
6161
}, $bindings);
62-
$this->assertEquals(
62+
$this->assertSame(
6363
$bindingConfig,
6464
$bindings,
6565
'Invalid exchange bindings configuration: ' . $name
@@ -121,7 +121,7 @@ public function exchangeDataProvider()
121121
'arguments' => [
122122
'argument1' => 'value',
123123
'argument2' => true,
124-
'argument3' => '150',
124+
'argument3' => 150,
125125
],
126126
],
127127
]

0 commit comments

Comments
 (0)