Skip to content

Commit

Permalink
fix counts v1 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Oct 11, 2023
1 parent 2eecc6d commit 598231f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void testWriteParse_nameIsNull() throws SAXException, ParserConfiguration
f.counts.setName(null);
Assert.assertNull(f.counts.getName());
String filename = this.utils.getOutputDirectory() + "counts.xml";
new CountsWriter(f.counts).write(filename);
new CountsWriterV1(f.counts).write(filename);

Counts counts2 = new Counts();
new CountsReaderMatsimV1(counts2).readFile(filename);
Expand Down

0 comments on commit 598231f

Please sign in to comment.