[stream-refactor] remove one more getuser() usage

This commit is contained in:
David Wilson 2019-07-24 23:22:26 +01:00
parent 2f950b3bda
commit bed5931194
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
import getpass
import os
import mitogen
@ -67,7 +66,7 @@ class SuTest(testlib.DockerMixin, testlib.TestCase):
password='has_sudo_password',
)
context = self.router.su(via=ssh, password='rootpassword')
self.assertEquals('root', context.call(getpass.getuser))
self.assertEquals(0, context.call(os.getuid))
if __name__ == '__main__':