Skip to content

Commit

Permalink
make basedir_workdir an abspath
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin J. Mitchell committed Jun 13, 2010
1 parent c4570b0 commit 1bd34b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slave/buildslave/test/util/command.py
Expand Up @@ -19,7 +19,7 @@ def setUpCommand(self):
self.basedir_workdir -- os.path.join(self.basedir, 'workdir')
"""
self.basedir = os.path.abspath('basedir')
self.basedir_workdir = os.path.join('basedir', 'workdir')
self.basedir_workdir = os.path.join(self.basedir, 'workdir')

def tearDownCommand(self):
"""
Expand Down

0 comments on commit 1bd34b5

Please sign in to comment.