Skip to content

Commit

Permalink
Use string instead of ::class constant for a little while longer.
Browse files Browse the repository at this point in the history
  • Loading branch information
Boy Baukema committed Jun 10, 2016
1 parent 87b5b62 commit 652bd9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function a_non_null_value_is_converted_to_the_stepup_document_number_obje
$input = '12345';
$output = $type->convertToPHPValue($input, $this->platform);

$this->assertInstanceOf(DocumentNumber::class, $output);
$this->assertInstanceOf('Surfnet\Stepup\Identity\Value\DocumentNumber', $output);
$this->assertTrue((new DocumentNumber($input))->equals($output));
}

Expand Down

0 comments on commit 652bd9b

Please sign in to comment.