From 85cf50f54d6cabd04503e00432233d21a1490720 Mon Sep 17 00:00:00 2001 From: Cameron Ross Date: Thu, 27 Feb 2020 03:21:37 -0400 Subject: [PATCH] fix an instance where a deprecated Nullable alias this was used --- testsuite/source/app.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/source/app.d b/testsuite/source/app.d index 31f2340..6c26b32 100644 --- a/testsuite/source/app.d +++ b/testsuite/source/app.d @@ -264,13 +264,13 @@ TestResult runTests(string tml) @safe { Appender!string buf; dumper().dump(buf); - compareLineByLine(buf.data, compareYAMLString, "Dumped YAML mismatch"); + compareLineByLine(buf.data, compareYAMLString.get, "Dumped YAML mismatch"); testsRun++; } if (!loadFailed && !events.isNull && !shouldFail) { const compare = dumpEventString(yamlString); - compareLineByLine(compare, events, "Event mismatch"); + compareLineByLine(compare, events.get, "Event mismatch"); testsRun++; } if (loadFailed && !shouldFail)