Skip to content

Commit 61a0d34

Browse files
committed
chore(tests): update string
1 parent 3244b68 commit 61a0d34

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/integration/frameworks/laravel/mock_horizon_error_path.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Laravel\Horizon\Console {
1111
class HorizonCommand {
1212
public function handle() {
13-
echo "handle function\n";
13+
echo "Error handle function\n";
1414
throw new \Error("Error occurred");
1515
}
1616
}

tests/integration/frameworks/laravel/mock_horizon_exception_path.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Laravel\Horizon\Console {
1111
class HorizonCommand {
1212
public function handle() {
13-
echo "handle function\n";
13+
echo "Exception handle function\n";
1414
throw new \Exception("Exception occurred");
1515
}
1616
}

tests/integration/frameworks/laravel/mock_supervisor_error_path.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Laravel\Horizon\Console {
1111
class SupervisorCommand {
1212
public function handle() {
13-
echo "handle function\n";
13+
echo "Error handle function\n";
1414
throw new \Error("Error occurred");
1515
}
1616
}

tests/integration/frameworks/laravel/mock_supervisor_exception_path.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Laravel\Horizon\Console {
1111
class SupervisorCommand {
1212
public function handle() {
13-
echo "handle function\n";
13+
echo "Exception handle function\n";
1414
throw new \Exception("Exception occurred");
1515
}
1616
}

0 commit comments

Comments
 (0)