From bdd231ae875e4cc5a7bf69eba65aac9dc872f10e Mon Sep 17 00:00:00 2001 From: Altamash Shaikh Date: Mon, 14 Oct 2024 06:49:50 +0530 Subject: [PATCH] Fixes test --- tests/Integration/SettingsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Integration/SettingsTest.php b/tests/Integration/SettingsTest.php index 325a1c4..8f86397 100644 --- a/tests/Integration/SettingsTest.php +++ b/tests/Integration/SettingsTest.php @@ -179,7 +179,7 @@ public function test_numQueueWorkers_ShouldFail_IfIsNumericButFloat() public function test_numQueueWorkers_ShouldFail_IfTooHigh() { $this->expectException(\Exception::class); - $this->expectExceptionMessage('The value should be at most 16'); + $this->expectExceptionMessage('The value should be at most 4096'); $this->settings->numQueueWorkers->setValue('4097'); }