fix an instance where a deprecated Nullable alias this was used
This commit is contained in:
parent
c4640defc4
commit
85cf50f54d
|
@ -264,13 +264,13 @@ TestResult runTests(string tml) @safe
|
||||||
{
|
{
|
||||||
Appender!string buf;
|
Appender!string buf;
|
||||||
dumper().dump(buf);
|
dumper().dump(buf);
|
||||||
compareLineByLine(buf.data, compareYAMLString, "Dumped YAML mismatch");
|
compareLineByLine(buf.data, compareYAMLString.get, "Dumped YAML mismatch");
|
||||||
testsRun++;
|
testsRun++;
|
||||||
}
|
}
|
||||||
if (!loadFailed && !events.isNull && !shouldFail)
|
if (!loadFailed && !events.isNull && !shouldFail)
|
||||||
{
|
{
|
||||||
const compare = dumpEventString(yamlString);
|
const compare = dumpEventString(yamlString);
|
||||||
compareLineByLine(compare, events, "Event mismatch");
|
compareLineByLine(compare, events.get, "Event mismatch");
|
||||||
testsRun++;
|
testsRun++;
|
||||||
}
|
}
|
||||||
if (loadFailed && !shouldFail)
|
if (loadFailed && !shouldFail)
|
||||||
|
|
Loading…
Reference in a new issue