From 3d22c7f5b520470fc4599ec0c5ba6e23c6b53117 Mon Sep 17 00:00:00 2001 From: Boris Carvajal Date: Wed, 24 Feb 2021 18:52:17 -0300 Subject: [PATCH] Add two required imports --- example/example_pass.d | 1 + tests/unit_threaded/ut/reflection.d | 1 + 2 files changed, 2 insertions(+) diff --git a/example/example_pass.d b/example/example_pass.d index 8e4d3722..57ff70fb 100755 --- a/example/example_pass.d +++ b/example/example_pass.d @@ -5,6 +5,7 @@ import tests.pass.normal; import tests.pass.delayed; import tests.pass.attributes; import tests.pass.io; +import tests.pass.property; import tests.pass.mock; int main(string[] args) { diff --git a/tests/unit_threaded/ut/reflection.d b/tests/unit_threaded/ut/reflection.d index d69464b0..79811826 100644 --- a/tests/unit_threaded/ut/reflection.d +++ b/tests/unit_threaded/ut/reflection.d @@ -35,6 +35,7 @@ unittest { @safe pure unittest { import std.algorithm: sorted = sort; + import unit_threaded.ut.modules.issue225; const actual = moduleUnitTests!(unit_threaded.ut.modules.issue225). map!(a => a.name).array;