Skip to content

Commit

Permalink
Fix test by changing order of generated namespaces (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
dr0i committed Mar 19, 2024
1 parent 59f6e5d commit 8e0fb43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public void shouldAddMultipleNamespacesFromParameterToRootElement() {

emitEmptyRecord();

assertEquals("<?xml version=\"1.0\" encoding=\"UTF-8\"?><records xmlns=\"http://default.org/ns\" xmlns:ns=\"http://example.org/ns\" xmlns:ns1=\"http://example.org/ns1\"><record /></records>",
assertEquals("<?xml version=\"1.0\" encoding=\"UTF-8\"?><records xmlns:ns=\"http://example.org/ns\" xmlns=\"http://default.org/ns\" xmlns:ns1=\"http://example.org/ns1\"><record /></records>",
getResultXml());
}
@Test
Expand Down

0 comments on commit 8e0fb43

Please sign in to comment.