Skip to content

Commit

Permalink
some platforms still use /usr/bin prefix (ie: macos)
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@17781 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Dec 29, 2017
1 parent 9c1f760 commit ce33d48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unittests/unit/server/auth_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ def exec_cmd(cmd, success=True):
a = self._init_auth("exec", **kwargs)
assert not a.requires_challenge()
assert a.authenticate()==success
exec_cmd("/bin/true", True)
exec_cmd("/bin/false", False)
exec_cmd("/usr/bin/true", True)
exec_cmd("/usr/bin/false", False)


def main():
Expand Down

0 comments on commit ce33d48

Please sign in to comment.