Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkorelstar <korelstar@users.noreply.github.com>2022-09-04 11:52:24 +0300
committerkorelstar <korelstar@users.noreply.github.com>2022-09-04 12:01:46 +0300
commitc9007dc2416b205fb46e7015d8bfb410f745e711 (patch)
tree921d42e96af68b84c7d870d88049890b5abd17b9
parent5f0886bf2a0247b37fdc50daf791a27b4a530fee (diff)
fix API test (allow more time for updating)
-rw-r--r--tests/api/AbstractAPITest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/api/AbstractAPITest.php b/tests/api/AbstractAPITest.php
index ee8cac66..1111f10f 100644
--- a/tests/api/AbstractAPITest.php
+++ b/tests/api/AbstractAPITest.php
@@ -144,7 +144,7 @@ abstract class AbstractAPITest extends TestCase {
$this->assertEqualsWithDelta(
$refNote->$key,
$note->$key,
- 5,
+ 10,
$messagePrefix.': Property '.$key.' (reference note: '.$refNote->title.')'
);
} else {