Skip to content

Commit 00e1384

Browse files
committed
Fix the password digest matching as it has non \w symbols.
1 parent af85f68 commit 00e1384

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/Connector/soapConnectorTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ function testWSSecurity() {
4343
->string($this->testedInstance->getAPIFormattedRequest())
4444
->contains('Username>blah<')
4545
->contains('Created>' . date_create()->format('Y-m-d')) // Do not run this test at midnight! (Or get it wet).
46-
->matches('/:Password>\w+=</');
46+
->matches('/:Password>.+=</');
4747
}
4848
}

0 commit comments

Comments
 (0)