From 08f2955e1717c7ef3fc733b4607e70a98bedcc05 Mon Sep 17 00:00:00 2001 From: Andrej Hudec Date: Sun, 10 May 2020 06:15:06 +0200 Subject: [PATCH] Fix small typo in documentation for method `seeResponseMatchesJsonType` --- src/Codeception/Module/REST.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Codeception/Module/REST.php b/src/Codeception/Module/REST.php index 660e6b7..6bd0307 100644 --- a/src/Codeception/Module/REST.php +++ b/src/Codeception/Module/REST.php @@ -1196,7 +1196,7 @@ public function dontSeeResponseContainsJson($json = []) * // {'user_id': '1'} * $I->seeResponseMatchesJsonType([ * 'user_id' => 'string:>0', // works with strings as well - * } + * ]); * ?> * ``` *