From 069d9892a869f9d0e42dd283adcdfe98f874d77e Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sun, 5 Nov 2023 09:20:27 -0500 Subject: [PATCH] chore: uses `example.com` instead --- tests/Expectations/FailedRequests.php | 4 ++-- tests/Expectations/FailureRate.php | 4 ++-- tests/Expectations/Requests.php | 4 ++-- tests/Expectations/SuccessRate.php | 4 ++-- tests/Expectations/SuccessfulRequests.php | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/Expectations/FailedRequests.php b/tests/Expectations/FailedRequests.php index c300a5c..8a4dc1f 100644 --- a/tests/Expectations/FailedRequests.php +++ b/tests/Expectations/FailedRequests.php @@ -5,7 +5,7 @@ use function Pest\Stressless\stress; it('may pass', function (): void { - $result = stress('nunomaduro.com') + $result = stress('example.com') ->with(2)->concurrentRequests() ->for(1)->second(); @@ -13,7 +13,7 @@ }); it('may fail', function (): void { - $result = stress('dummy-nunomaduro.com') + $result = stress('dummy-example.com') ->with(2)->concurrentRequests() ->for(1)->second(); diff --git a/tests/Expectations/FailureRate.php b/tests/Expectations/FailureRate.php index e8e8f68..72fa701 100644 --- a/tests/Expectations/FailureRate.php +++ b/tests/Expectations/FailureRate.php @@ -5,7 +5,7 @@ use function Pest\Stressless\stress; it('may pass', function (): void { - $result = stress('nunomaduro.com') + $result = stress('example.com') ->with(2)->concurrentRequests() ->for(1)->second(); @@ -13,7 +13,7 @@ }); it('may fail', function (): void { - $result = stress('dummy-nunomaduro.com') + $result = stress('dummy-example.com') ->with(2)->concurrentRequests() ->for(1)->second(); diff --git a/tests/Expectations/Requests.php b/tests/Expectations/Requests.php index e148e2e..a4fcba1 100644 --- a/tests/Expectations/Requests.php +++ b/tests/Expectations/Requests.php @@ -5,7 +5,7 @@ use function Pest\Stressless\stress; it('may pass', function (): void { - $result = stress('nunomaduro.com') + $result = stress('example.com') ->with(2)->concurrentRequests() ->for(1)->second(); @@ -13,7 +13,7 @@ }); it('may fail', function (): void { - $result = stress('dummy-nunomaduro.com') + $result = stress('dummy-example.com') ->with(2)->concurrentRequests() ->for(1)->second(); diff --git a/tests/Expectations/SuccessRate.php b/tests/Expectations/SuccessRate.php index e8e8f68..72fa701 100644 --- a/tests/Expectations/SuccessRate.php +++ b/tests/Expectations/SuccessRate.php @@ -5,7 +5,7 @@ use function Pest\Stressless\stress; it('may pass', function (): void { - $result = stress('nunomaduro.com') + $result = stress('example.com') ->with(2)->concurrentRequests() ->for(1)->second(); @@ -13,7 +13,7 @@ }); it('may fail', function (): void { - $result = stress('dummy-nunomaduro.com') + $result = stress('dummy-example.com') ->with(2)->concurrentRequests() ->for(1)->second(); diff --git a/tests/Expectations/SuccessfulRequests.php b/tests/Expectations/SuccessfulRequests.php index 69e2ef4..358cbd8 100644 --- a/tests/Expectations/SuccessfulRequests.php +++ b/tests/Expectations/SuccessfulRequests.php @@ -5,7 +5,7 @@ use function Pest\Stressless\stress; it('may pass', function (): void { - $result = stress('nunomaduro.com') + $result = stress('example.com') ->with(2)->concurrentRequests() ->for(1)->second(); @@ -15,7 +15,7 @@ }); it('may fail', function (): void { - $result = stress('dummy-nunomaduro.com') + $result = stress('dummy-example.com') ->with(2)->concurrentRequests() ->for(1)->second();