@@ -27,7 +27,7 @@ public async Task PackageToUpperNoAOTSettingWithArgument()
2727 try
2828 {
2929 var assembly = this . GetType ( ) . GetTypeInfo ( ) . Assembly ;
30- var fullPath = Path . GetFullPath ( Path . GetDirectoryName ( assembly . Location ) + "../../../../../../testapps/SingeFileLambdaFunctions /ToUpperFunctionNoAOT.cs" ) ;
30+ var fullPath = Path . GetFullPath ( Path . GetDirectoryName ( assembly . Location ) + "../../../../../../testapps/SingleFileLambdaFunctions /ToUpperFunctionNoAOT.cs" ) ;
3131 var command = new PackageCommand ( new TestToolLogger ( _testOutputHelper ) , Environment . CurrentDirectory , new string [ ] { fullPath , tempFile } ) ;
3232
3333 var created = await command . ExecuteAsync ( ) ;
@@ -52,7 +52,7 @@ public async Task PackageToUpperNoAOTSettingWithProjectLocation()
5252 try
5353 {
5454 var assembly = this . GetType ( ) . GetTypeInfo ( ) . Assembly ;
55- var fullPath = Path . GetFullPath ( Path . GetDirectoryName ( assembly . Location ) + "../../../../../../testapps/SingeFileLambdaFunctions /ToUpperFunctionNoAOT.cs" ) ;
55+ var fullPath = Path . GetFullPath ( Path . GetDirectoryName ( assembly . Location ) + "../../../../../../testapps/SingleFileLambdaFunctions /ToUpperFunctionNoAOT.cs" ) ;
5656 var command = new PackageCommand ( new TestToolLogger ( _testOutputHelper ) , Environment . CurrentDirectory , new string [ ] { tempFile , "--project-location" , fullPath } ) ;
5757
5858 var created = await command . ExecuteAsync ( ) ;
@@ -78,7 +78,7 @@ public async Task PackageToUpperNoAOTSettingWithProjectLocation()
7878 public void ConfirmUsingNativeAOT ( string filename , bool isAot , string msBuildParameters )
7979 {
8080 var assembly = this . GetType ( ) . GetTypeInfo ( ) . Assembly ;
81- var fullPath = Path . GetFullPath ( Path . GetDirectoryName ( assembly . Location ) + $ "../../../../../../testapps/SingeFileLambdaFunctions /{ filename } ") ;
81+ var fullPath = Path . GetFullPath ( Path . GetDirectoryName ( assembly . Location ) + $ "../../../../../../testapps/SingleFileLambdaFunctions /{ filename } ") ;
8282 var actualAot = Utilities . LookPublishAotFlag ( fullPath , msBuildParameters ) ;
8383
8484 Assert . Equal ( isAot , actualAot ) ;
@@ -172,7 +172,7 @@ public void DeterminePublishLocationForSingleFileVsRegularProject()
172172 var assembly = this . GetType ( ) . GetTypeInfo ( ) . Assembly ;
173173
174174 // Test with single file - should use artifacts folder
175- var singleFilePath = Path . GetFullPath ( Path . GetDirectoryName ( assembly . Location ) + "../../../../../../testapps/SingeFileLambdaFunctions /ToUpperFunctionNoAOT.cs" ) ;
175+ var singleFilePath = Path . GetFullPath ( Path . GetDirectoryName ( assembly . Location ) + "../../../../../../testapps/SingleFileLambdaFunctions /ToUpperFunctionNoAOT.cs" ) ;
176176 var singleFilePublishLocation = Utilities . DeterminePublishLocation ( Environment . CurrentDirectory , singleFilePath , "Release" , "net10.0" ) ;
177177
178178 // Single file should have "artifacts" in the path
@@ -266,7 +266,7 @@ public void GetSolutionDirectoryForSingleFileVsRegularProject()
266266 var assembly = this . GetType ( ) . GetTypeInfo ( ) . Assembly ;
267267
268268 // Test with single file - should return parent directory
269- var singleFilePath = Path . GetFullPath ( Path . GetDirectoryName ( assembly . Location ) + "../../../../../../testapps/SingeFileLambdaFunctions /ToUpperFunctionNoAOT.cs" ) ;
269+ var singleFilePath = Path . GetFullPath ( Path . GetDirectoryName ( assembly . Location ) + "../../../../../../testapps/SingleFileLambdaFunctions /ToUpperFunctionNoAOT.cs" ) ;
270270 var singleFileSolutionDir = Utilities . GetSolutionDirectoryFullPath ( Environment . CurrentDirectory , singleFilePath , null ) ;
271271 var expectedSingleFileDir = Path . GetDirectoryName ( singleFilePath ) ;
272272 Assert . Equal ( expectedSingleFileDir , singleFileSolutionDir ) ;
0 commit comments