diff --git a/testing.md b/testing.md index 9d3fe09a5d..ddea9f26ae 100644 --- a/testing.md +++ b/testing.md @@ -163,6 +163,6 @@ Using the `ParallelTesting` facade, you may specify code to be executed on the ` #### Accessing The Parallel Testing Token -If you would like to access to current parallel process "token" from any other location in your application's test code, you may use the `token` method. This token is a unique, integer identifier for an individual test process and may be used to segment resources across parallel test processes. For example, Laravel automatically appends this token to the end of the test databases created by each parallel testing process: +If you would like to access to current parallel process "token" from any other location in your application's test code, you may use the `token` method. This token is a unique, string identifier for an individual test process and may be used to segment resources across parallel test processes. For example, Laravel automatically appends this token to the end of the test databases created by each parallel testing process: $token = ParallelTesting::token();