Skip to content

Commit a64cbff

Browse files
committed
Fix double quotes
1 parent bfce7b3 commit a64cbff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/specs/JsonDecoderSpec.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function it_should_be_able_to_transform_raw_with_private_properties()
107107
public function it_should_be_able_to_transform_null_values()
108108
{
109109
$this->register(new SampleTransformer());
110-
$response = $this->decode("null", JsonDecoderSample::class);
110+
$response = $this->decode('null', JsonDecoderSample::class);
111111

112112
$response->shouldBe(null);
113113
}

0 commit comments

Comments
 (0)