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:
2929 run : composer install --prefer-dist --no-interaction --no-suggest
3030
3131 - name : Compose Blackbox environment
32- run : docker- compose up -d
32+ run : docker compose up -d
3333 - 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/
3535 - 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/
3737 - 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/
3939
4040
4141
Original file line number Diff line number Diff line change @@ -196,7 +196,6 @@ public function isShouldAcceptAnySequenceOfBasicLatinCharactersForLabelValues($v
196196 self ::assertContainsOnlyInstancesOf (MetricFamilySamples::class, $ metrics );
197197
198198 $ metric = reset ($ metrics );
199- self ::assertInstanceOf (MetricFamilySamples::class, $ metric );
200199 $ samples = $ metric ->getSamples ();
201200 self ::assertContainsOnlyInstancesOf (Sample::class, $ samples );
202201
Original file line number Diff line number Diff line change @@ -330,7 +330,6 @@ public function isShouldAcceptAnySequenceOfBasicLatinCharactersForLabelValues($v
330330 self ::assertContainsOnlyInstancesOf (MetricFamilySamples::class, $ metrics );
331331
332332 $ metric = reset ($ metrics );
333- self ::assertInstanceOf (MetricFamilySamples::class, $ metric );
334333 $ samples = $ metric ->getSamples ();
335334 self ::assertContainsOnlyInstancesOf (Sample::class, $ samples );
336335
Original file line number Diff line number Diff line change @@ -484,7 +484,6 @@ public function isShouldAcceptAnySequenceOfBasicLatinCharactersForLabelValues($v
484484 self ::assertContainsOnlyInstancesOf (MetricFamilySamples::class, $ metrics );
485485
486486 $ metric = reset ($ metrics );
487- self ::assertInstanceOf (MetricFamilySamples::class, $ metric );
488487 $ samples = $ metric ->getSamples ();
489488 self ::assertContainsOnlyInstancesOf (Sample::class, $ samples );
490489
Original file line number Diff line number Diff line change @@ -580,7 +580,6 @@ public function isShouldAcceptAnySequenceOfBasicLatinCharactersForLabelValues($v
580580 self ::assertContainsOnlyInstancesOf (MetricFamilySamples::class, $ metrics );
581581
582582 $ metric = reset ($ metrics );
583- self ::assertInstanceOf (MetricFamilySamples::class, $ metric );
584583 $ samples = $ metric ->getSamples ();
585584 self ::assertContainsOnlyInstancesOf (Sample::class, $ samples );
586585
You can’t perform that action at this time.
0 commit comments