Skip to content

Commit

Permalink
Add trailing comma's (part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Jul 18, 2024
1 parent dc9f3e8 commit 0486a77
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/SAML2/XML/mdrpi/PublicationInfoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ public function testMissingPublisherThrowsException(): void
creationInstant="2011-01-01T00:00:00Z"
publicationId="SomePublicationId">
</mdrpi:PublicationInfo>
XML;
XML
,
);

$this->expectException(MissingAttributeException::class);
Expand Down
3 changes: 2 additions & 1 deletion tests/SAML2/XML/mdrpi/PublicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ public function testMissingPublisherThrowsException(): void
creationInstant="2011-01-01T00:00:00Z"
publicationId="SomePublicationId">
</mdrpi:Publication>
XML;
XML
,
);

$this->expectException(MissingAttributeException::class);
Expand Down
3 changes: 2 additions & 1 deletion tests/SAML2/XML/mdrpi/RegistrationInfoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ public function testMissingPublisherThrowsException(): void
<mdrpi:RegistrationInfo xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi"
registrationInstant="2011-01-01T00:00:00Z">
</mdrpi:RegistrationInfo>
XML;
XML
,
);

$this->expectException(MissingAttributeException::class);
Expand Down

0 comments on commit 0486a77

Please sign in to comment.