Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Stepan Vanecek authored and Stepan Vanecek committed Jan 23, 2024
1 parent 77bbd9c commit 232ee4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/export.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ static suite<"export"> _ = []
{
{
auto topo = new Topology;
new Memory{topo, "A single memory component", 16};
new Memory{topo, 56, "A single memory component", 16};
exportToXml(topo, "test.xml");
}

Expand All @@ -156,7 +156,7 @@ static suite<"export"> _ = []
for (const auto &[node, xpath, value] : std::vector{
std::tuple{topo, "string(@id)", "0"},
std::tuple{topo, "string(@name)", "sys-sage Topology"},
std::tuple{memory, "string(@id)", "0"},
std::tuple{memory, "string(@id)", "56"},
std::tuple{memory, "string(@name)", "A single memory component"},
std::tuple{memory, "string(@size)", "16"},
})
Expand Down

0 comments on commit 232ee4d

Please sign in to comment.