Skip to content

Commit 228397b

Browse files
committed
fix typo in assert methods: 'then' -> 'than'. Fixes #1021
1 parent fd96138 commit 228397b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Codeception/Module/SOAP.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ public function seeSoapResponseContainsXPath($xpath)
306306
$path = new \DOMXPath($this->xmlResponse);
307307
$res = $path->query($xpath);
308308
if ($res === false) $this->fail("XPath selector is malformed");
309-
$this->assertGreaterThen(0, $res->length);
309+
$this->assertGreaterThan(0, $res->length);
310310
}
311311

312312
/**

0 commit comments

Comments
 (0)