From 59a70419b93110c99173a05beb48b334a07b4f61 Mon Sep 17 00:00:00 2001 From: Anton Ryabchikov <36799941+DedAnton@users.noreply.github.com> Date: Wed, 15 Nov 2023 10:25:28 +0300 Subject: [PATCH] fix unit test --- NextGenMapperTests/Tests/MapMethodInvocation/Map.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NextGenMapperTests/Tests/MapMethodInvocation/Map.cs b/NextGenMapperTests/Tests/MapMethodInvocation/Map.cs index 81472eb..42f666e 100644 --- a/NextGenMapperTests/Tests/MapMethodInvocation/Map.cs +++ b/NextGenMapperTests/Tests/MapMethodInvocation/Map.cs @@ -225,7 +225,7 @@ public class Program public object? RunTest() { Source? source = new Source(); - return source.Map(); + return source?.Map(); } }