Skip to content

Commit

Permalink
Merge pull request #289 from aws/kmalhar/integ-test-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
96malhar authored Aug 10, 2021
2 parents 046c143 + f1f5caf commit 0674e75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public CustomRecipeLocatorTests()
var commandLineWrapper = new CommandLineWrapper(consoleOrchestratorLogger);
_customRecipeLocator = new CustomRecipeLocator(deploymentManifestEngine, consoleOrchestratorLogger, commandLineWrapper, directoryManager);

var solutionPath = new ProjectDefinitionParser(fileManager, directoryManager).Parse(_webAppWithDockerFilePath).Result.ProjectSolutionPath;
var solutionPath = Path.Combine(testAppsDirectoryPath, "..", "AWS.Deploy.sln");
_solutionDirectoryPath = directoryManager.GetDirectoryInfo(solutionPath).Parent.FullName;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public async Task InvalidSaveCdkDirectoryInsideProjectDirectory()
[Fact]
public async Task InvalidNonEmptySaveCdkDirectory()
{
Directory.CreateDirectory(Path.Combine(_testArtifactsDirectoryPath, "MyCdkAPP", "MyFolder"));
Directory.CreateDirectory(Path.Combine(_testArtifactsDirectoryPath, "MyCdkApp", "MyFolder"));
_saveDirectoryPath = Path.Combine(_testArtifactsDirectoryPath, "MyCdkApp");
await Utilities.CreateCDKDeploymentProject(_targetApplicationProjectPath, _saveDirectoryPath, false);
CleanUp();
Expand Down

0 comments on commit 0674e75

Please sign in to comment.