Skip to content

Commit

Permalink
remove var_dump from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippGrashoff committed Aug 22, 2023
1 parent eecfc9a commit bbe69cb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
php: ['8.0', '8.1', '8.2']
type: ['Phpunit']
env:
LOG_COVERAGE: "${{ fromJSON('{true: \"1\", false: \"\"}')[matrix.php == '8.0' && matrix.type == 'Phpunit' && (github.event_name == 'pull_request' || (github.event_name == 'push' && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master')))] }}"
LOG_COVERAGE: "${{ fromJSON('{true: \"1\", false: \"\"}')[matrix.php == '8.0' && matrix.type == 'Phpunit' && (github.event_name == 'pull_request' || (github.event_name == 'push' && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main')))] }}"
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion tests/ExecutorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,6 @@ public function testRunHourly()
'minute_hourly' => (int)$testTime->format('i')
]
);
var_dump($scheduler1->get('minute_hourly'));
$scheduler2 = $this->_getScheduler(
$persistence,
[
Expand Down

0 comments on commit bbe69cb

Please sign in to comment.