Skip to content

Commit a82e661

Browse files
authored
Merge pull request #486 from localheinz/fix/argument
Fix: Remove unused argument from method call
2 parents 26fe315 + 57d8fa3 commit a82e661

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/SchemaStorageTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function testUnresolvableJsonPointExceptionShouldBeThrown()
114114
$uriRetriever = $this->prophesize('JsonSchema\UriRetrieverInterface');
115115
$uriRetriever->retrieve($mainSchemaPath)
116116
->willReturn($mainSchema)
117-
->shouldBeCalled($mainSchema);
117+
->shouldBeCalled();
118118

119119
$schemaStorage = new SchemaStorage($uriRetriever->reveal());
120120
$schemaStorage->resolveRef("$mainSchemaPath#/definitions/car");

0 commit comments

Comments
 (0)