From 22a891dbb4fd7b430abed88a4db86f0aa7ce2e41 Mon Sep 17 00:00:00 2001 From: Wim Griffioen Date: Wed, 1 Oct 2025 09:42:28 +0200 Subject: [PATCH] Update a failing test --- tests/ConnectionTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ConnectionTest.php b/tests/ConnectionTest.php index 8adcff4..1014666 100644 --- a/tests/ConnectionTest.php +++ b/tests/ConnectionTest.php @@ -52,7 +52,7 @@ public function testTokenExpires(): void $this->assertTrue($connection->tokenHasExpired()); - $connection->setTokenExpires(time() + 3600); + $connection->setTokenExpires(time() + 60); $this->assertFalse($connection->tokenHasExpired()); }