@@ -44,7 +44,7 @@ public async Task ShouldWorkWithAPathAndTypeModule()
4444            await  Page . GoToAsync ( TestConstants . EmptyPage ) ; 
4545            await  Page . AddScriptTagAsync ( new  AddTagOptions 
4646            { 
47-                 Path  =  Path . Combine ( Directory . GetCurrentDirectory ( ) ,  Path . Combine ( "assets " ,  "es6" ,  "es6pathimport.js" ) ) , 
47+                 Path  =  Path . Combine ( Directory . GetCurrentDirectory ( ) ,  Path . Combine ( "Assets " ,  "es6" ,  "es6pathimport.js" ) ) , 
4848                Type  =  "module" 
4949            } ) ; 
5050            await  Page . WaitForFunctionAsync ( "() => window.__es6injected" ) ; 
@@ -79,7 +79,7 @@ public async Task ShouldWorkWithAPath()
7979            await  Page . GoToAsync ( TestConstants . EmptyPage ) ; 
8080            var  scriptHandle  =  await  Page . AddScriptTagAsync ( new  AddTagOptions 
8181            { 
82-                 Path  =  Path . Combine ( Directory . GetCurrentDirectory ( ) ,  Path . Combine ( "assets " ,  "injectedfile.js" ) ) 
82+                 Path  =  Path . Combine ( Directory . GetCurrentDirectory ( ) ,  Path . Combine ( "Assets " ,  "injectedfile.js" ) ) 
8383            } ) ; 
8484            Assert . NotNull ( scriptHandle  as  ElementHandle ) ; 
8585            Assert . Equal ( 42 ,  await  Page . EvaluateExpressionAsync < int > ( "__injected" ) ) ; 
@@ -91,10 +91,10 @@ public async Task ShouldIncludeSourcemapWhenPathIsProvided()
9191            await  Page . GoToAsync ( TestConstants . EmptyPage ) ; 
9292            await  Page . AddScriptTagAsync ( new  AddTagOptions 
9393            { 
94-                 Path  =  Path . Combine ( Directory . GetCurrentDirectory ( ) ,  Path . Combine ( "assets " ,  "injectedfile.js" ) ) 
94+                 Path  =  Path . Combine ( Directory . GetCurrentDirectory ( ) ,  Path . Combine ( "Assets " ,  "injectedfile.js" ) ) 
9595            } ) ; 
9696            var  result  =  await  Page . EvaluateExpressionAsync < string > ( "__injectedError.stack" ) ; 
97-             Assert . Contains ( Path . Combine ( "assets " ,  "injectedfile.js" ) ,  result ) ; 
97+             Assert . Contains ( Path . Combine ( "Assets " ,  "injectedfile.js" ) ,  result ) ; 
9898        } 
9999
100100        [ Fact ] 
0 commit comments