Skip to content

Commit

Permalink
Merge pull request #55 from Maks3w/php_73
Browse files Browse the repository at this point in the history
Php 73
  • Loading branch information
Maks3w authored Mar 19, 2019
2 parents 4d0818e + 0040b86 commit ef08f0b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ matrix:
- php: 7.1
env:
- EXECUTE_TEST_COVERALLS=true
- php: 7.2
- php: 7.3
env:
- EXECUTE_CS_CHECK=true

Expand Down
2 changes: 1 addition & 1 deletion tests/PhpUnit/JsonSchemaConstraintTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected function setUp()

public function testConstraintDefinition()
{
self::assertEquals(1, count($this->constraint));
self::assertCount(1, $this->constraint);
self::assertEquals('is a valid context', $this->constraint->toString());
}

Expand Down
2 changes: 1 addition & 1 deletion tests/PhpUnit/MediaTypeConstraintTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ protected function setUp()

public function testConstraintDefinition()
{
self::assertEquals(1, count($this->constraint));
self::assertCount(1, $this->constraint);
self::assertEquals('is an allowed media type (application/json, text/xml)', $this->constraint->toString());
}

Expand Down
2 changes: 1 addition & 1 deletion tests/PhpUnit/RequestHeadersConstraintTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected function setUp()

public function testConstraintDefinition()
{
self::assertEquals(1, count($this->constraint));
self::assertCount(1, $this->constraint);
self::assertEquals('is a valid request header', $this->constraint->toString());
}

Expand Down
2 changes: 1 addition & 1 deletion tests/PhpUnit/RequestQueryConstraintTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected function setUp()

public function testConstraintDefinition()
{
self::assertEquals(1, count($this->constraint));
self::assertCount(1, $this->constraint);
self::assertEquals('is a valid request query', $this->constraint->toString());
}

Expand Down
2 changes: 1 addition & 1 deletion tests/PhpUnit/ResponseHeadersConstraintTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected function setUp()

public function testConstraintDefinition()
{
self::assertEquals(1, count($this->constraint));
self::assertCount(1, $this->constraint);
self::assertEquals('is a valid response header', $this->constraint->toString());
}

Expand Down

0 comments on commit ef08f0b

Please # to comment.