Skip to content

Commit

Permalink
Merge pull request #2235 from rutsky/worker_slave_renaming
Browse files Browse the repository at this point in the history
"slave" string renaming in buildbot-worker tests
  • Loading branch information
tardyp committed Jun 5, 2016
2 parents 4098ee6 + 6e831fa commit bb19c91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion worker/buildbot_worker/test/fake/workerforbuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class FakeWorkerForBuilder(object):
"""
debug = False

def __init__(self, basedir="/slavebuilder/basedir"):
def __init__(self, basedir="/workerbuilder/basedir"):
self.updates = []
self.basedir = basedir
self.unicode_encoding = 'utf-8'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ def testBackslashInBasedir(self):
won't break generated TAC file.
"""

p = mock.patch.dict(self.options, {"basedir": r"C:\builslave dir\\"})
p = mock.patch.dict(self.options, {"basedir": r"C:\buildbot-worker dir\\"})
p.start()
try:
self.assertTACFileContents(self.options)
Expand Down

0 comments on commit bb19c91

Please sign in to comment.