Skip to content

Commit

Permalink
fix test, add dpndbot for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
verdet23 committed Aug 10, 2022
1 parent 775126f commit bfa7a9e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ jobs:
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
# - name: Configure matchers
# run: ESCAPED_KEYWORD=$(printf '%s\n' "${{ github.workspace }}" | sed -e 's/[]\/$*.^[]/\\&/g'); sed -i "s/GH_WS/$ESCAPED_KEYWORD/g" ${{ github.workspace }}/.github/workflows/phpunit-problem-matcher.json;
# - name: Enable matcher
# run: echo "::add-matcher::${{ github.workspace }}/.github/workflows/phpunit-problem-matcher.json"
- name: Enable matcher
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Check
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Handler/MockHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ public function testResetQueue(): void
$this->assertEmpty($mock);

$mock->append($request, $response);
$this->assertCount(2, $mock);
$this->assertCount(1, $mock);
}

public function testSuitableResponseNotFound(): void
Expand Down

0 comments on commit bfa7a9e

Please sign in to comment.