Skip to content

Commit

Permalink
Update SerializationTest.php
Browse files Browse the repository at this point in the history
Sorry missed a bracket
  • Loading branch information
simonsolutions authored Jul 9, 2024
1 parent 5e40284 commit 5986baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/SerializationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,6 @@ public function testDeserializeDateTimeWithTimezone(): void
]);
$this->assertNotNull($result);
$this->assertInstanceOf(DateTimeInterface::class, $result->payload->feesEstimateResult->feesEstimate->timeOfFeesEstimation);
$this->assertEquals( (new DateTimeZone('+02:00'), $result->payload->feesEstimateResult->feesEstimate->timeOfFeesEstimation->getTimeZone() );
$this->assertEquals( (new DateTimeZone('+02:00')), $result->payload->feesEstimateResult->feesEstimate->timeOfFeesEstimation->getTimeZone() );
}
}

0 comments on commit 5986baa

Please sign in to comment.