Skip to content

Commit 933b60d

Browse files
ddevsrpaulbalandan
authored andcommitted
refactor: name test
1 parent b8e315d commit 933b60d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/system/Session/Handlers/Database/RedisHandlerTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public static function provideSetSavePath(): iterable
248248
'persistent' => null,
249249
],
250250
],
251-
'persistent connection' => [
251+
'persistent connection with numeric one' => [
252252
'tcp://127.0.0.1:6379?timeout=10&persistent=1',
253253
[
254254
'host' => 'tcp://127.0.0.1',
@@ -259,7 +259,7 @@ public static function provideSetSavePath(): iterable
259259
'persistent' => true,
260260
],
261261
],
262-
'no persistent connection with have parameter' => [
262+
'no persistent connection with numeric zero' => [
263263
'tcp://127.0.0.1:6379?timeout=10&persistent=0',
264264
[
265265
'host' => 'tcp://127.0.0.1',
@@ -270,7 +270,7 @@ public static function provideSetSavePath(): iterable
270270
'persistent' => false,
271271
],
272272
],
273-
'persistent connection with true' => [
273+
'persistent connection with boolean true' => [
274274
'tcp://127.0.0.1:6379?timeout=10&persistent=true',
275275
[
276276
'host' => 'tcp://127.0.0.1',
@@ -281,7 +281,7 @@ public static function provideSetSavePath(): iterable
281281
'persistent' => true,
282282
],
283283
],
284-
'persistent connection with false' => [
284+
'persistent connection with boolean false' => [
285285
'tcp://127.0.0.1:6379?timeout=10&persistent=false',
286286
[
287287
'host' => 'tcp://127.0.0.1',

0 commit comments

Comments
 (0)