Skip to content

Commit

Permalink
Fix ambiguous call build error in Analysis.Common tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirwin committed Jan 1, 2025
1 parent 3425c33 commit 7c52873
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ public virtual void TestBaseDir()
[Test]
public virtual void TestDelegation()
{
IResourceLoader rl = new FilesystemResourceLoader(null, new StringMockResourceLoader("foobar\n"));
IResourceLoader rl = new FilesystemResourceLoader((string)null, new StringMockResourceLoader("foobar\n"));
assertEquals("foobar", WordlistLoader.GetLines(rl.OpenResource("template.txt"), Encoding.UTF8).First());
}
}
}
}

0 comments on commit 7c52873

Please sign in to comment.