Skip to content

Commit

Permalink
Fixing syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
ycombinator committed Aug 25, 2020
1 parent db7f2fb commit d92ea48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/testrunner/runners/system/servicedeployer/compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ func (r *DockerComposeRunner) SetUp(ctxt common.MapStr) (common.MapStr, error) {
// TODO: Write stdout and stderr streams to local filesystem files
// TODO: Return locations of stdout and stderr local files
newCtxt := ctxt
newCtxt.Put("stdoutFilePath": "/tmp/foo/bar/TODO-stdout")
newCtxt.Put("stderrFilePath": "/tmp/foo/bar/TODO-stderr")
newCtxt.Put("stdoutFilePath", "/tmp/foo/bar/TODO-stdout")
newCtxt.Put("stderrFilePath", "/tmp/foo/bar/TODO-stderr")

// TODO
return ctxt, nil
Expand Down

0 comments on commit d92ea48

Please sign in to comment.