File tree Expand file tree Collapse file tree 5 files changed +4
-8
lines changed Expand file tree Collapse file tree 5 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ jobs:
29
29
run : composer install --prefer-dist --no-interaction --no-suggest
30
30
31
31
- name : Compose Blackbox environment
32
- run : docker- compose up -d
32
+ run : docker compose up -d
33
33
- name : Run Blackbox with APC
34
- run : docker- compose run phpunit env ADAPTER=apc vendor/bin/phpunit tests/Test/
34
+ run : docker compose run phpunit env ADAPTER=apc vendor/bin/phpunit tests/Test/
35
35
- name : Run Blackbox with APCng
36
- run : docker- compose run phpunit env ADAPTER=apcng vendor/bin/phpunit tests/Test/
36
+ run : docker compose run phpunit env ADAPTER=apcng vendor/bin/phpunit tests/Test/
37
37
- name : Run Blackbox with Redis
38
- run : docker- compose run phpunit env ADAPTER=redis vendor/bin/phpunit tests/Test/
38
+ run : docker compose run phpunit env ADAPTER=redis vendor/bin/phpunit tests/Test/
39
39
40
40
41
41
Original file line number Diff line number Diff line change @@ -196,7 +196,6 @@ public function isShouldAcceptAnySequenceOfBasicLatinCharactersForLabelValues($v
196
196
self ::assertContainsOnlyInstancesOf (MetricFamilySamples::class, $ metrics );
197
197
198
198
$ metric = reset ($ metrics );
199
- self ::assertInstanceOf (MetricFamilySamples::class, $ metric );
200
199
$ samples = $ metric ->getSamples ();
201
200
self ::assertContainsOnlyInstancesOf (Sample::class, $ samples );
202
201
Original file line number Diff line number Diff line change @@ -330,7 +330,6 @@ public function isShouldAcceptAnySequenceOfBasicLatinCharactersForLabelValues($v
330
330
self ::assertContainsOnlyInstancesOf (MetricFamilySamples::class, $ metrics );
331
331
332
332
$ metric = reset ($ metrics );
333
- self ::assertInstanceOf (MetricFamilySamples::class, $ metric );
334
333
$ samples = $ metric ->getSamples ();
335
334
self ::assertContainsOnlyInstancesOf (Sample::class, $ samples );
336
335
Original file line number Diff line number Diff line change @@ -484,7 +484,6 @@ public function isShouldAcceptAnySequenceOfBasicLatinCharactersForLabelValues($v
484
484
self ::assertContainsOnlyInstancesOf (MetricFamilySamples::class, $ metrics );
485
485
486
486
$ metric = reset ($ metrics );
487
- self ::assertInstanceOf (MetricFamilySamples::class, $ metric );
488
487
$ samples = $ metric ->getSamples ();
489
488
self ::assertContainsOnlyInstancesOf (Sample::class, $ samples );
490
489
Original file line number Diff line number Diff line change @@ -580,7 +580,6 @@ public function isShouldAcceptAnySequenceOfBasicLatinCharactersForLabelValues($v
580
580
self ::assertContainsOnlyInstancesOf (MetricFamilySamples::class, $ metrics );
581
581
582
582
$ metric = reset ($ metrics );
583
- self ::assertInstanceOf (MetricFamilySamples::class, $ metric );
584
583
$ samples = $ metric ->getSamples ();
585
584
self ::assertContainsOnlyInstancesOf (Sample::class, $ samples );
586
585
You can’t perform that action at this time.
0 commit comments