File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
test/Serilog.Settings.Configuration.Tests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class DllScanningAssemblyFinderTests
18
18
[ Fact ]
19
19
public void ShouldProbeCurrentDirectory ( )
20
20
{
21
- var assemblyNames = new DllScanningAssemblyFinder ( ) . FindAssembliesContainingName ( "testdummies " ) ;
21
+ var assemblyNames = new DllScanningAssemblyFinder ( ) . FindAssembliesContainingName ( "TestDummies " ) ;
22
22
Assert . Single ( assemblyNames ) ;
23
23
}
24
24
@@ -33,9 +33,9 @@ public void ShouldProbePrivateBinPath()
33
33
DirectoryInfo GetOrCreateDirectory ( string name )
34
34
=> Directory . Exists ( name ) ? new DirectoryInfo ( name ) : Directory . CreateDirectory ( name ) ;
35
35
36
- File . Copy ( "testdummies .dll" , $ "{ BinDir1 } /customSink1.dll", true ) ;
37
- File . Copy ( "testdummies .dll" , $ "{ BinDir2 } /customSink2.dll", true ) ;
38
- File . Copy ( "testdummies .dll" , $ "{ BinDir3 } /thirdpartydependency.dll", true ) ;
36
+ File . Copy ( "TestDummies .dll" , $ "{ BinDir1 } /customSink1.dll", true ) ;
37
+ File . Copy ( "TestDummies .dll" , $ "{ BinDir2 } /customSink2.dll", true ) ;
38
+ File . Copy ( "TestDummies .dll" , $ "{ BinDir3 } /thirdpartydependency.dll", true ) ;
39
39
40
40
var ad = AppDomain . CreateDomain ( "serilog" , null ,
41
41
new AppDomainSetup
You can’t perform that action at this time.
0 commit comments