Skip to content

Commit

Permalink
t/tmetadata.py: fix a typo st_uid -> st_gid.
Browse files Browse the repository at this point in the history
Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
  • Loading branch information
eduardok authored and apenwarr committed Mar 10, 2011
1 parent 96a717d commit d641240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bup/t/tmetadata.py
Expand Up @@ -194,7 +194,7 @@ def test_restore_nonexistent_user_group():
WVPASSEQ(os.stat(path).st_gid, m.gid)
WVPASSEQ(m.apply_to_path(path, restore_numeric_ids=False), None)
WVPASSEQ(os.stat(path).st_uid, os.geteuid())
WVPASSEQ(os.stat(path).st_uid, os.getgid())
WVPASSEQ(os.stat(path).st_gid, os.getgid())
finally:
subprocess.call(['rm', '-rf', tmpdir])

Expand Down

0 comments on commit d641240

Please sign in to comment.