Skip to content

Commit d3cb6e6

Browse files
authored
Fix variable name in test_rsync.py output capture
1 parent a939682 commit d3cb6e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/test_rsync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def test_rsync_default_reporting(
142142
rsync = RSync(source)
143143
rsync.add_target(gw1, dirs.dest1)
144144
rsync.send()
145-
out, err = capsys.readouterr()
145+
out, _err = capsys.readouterr()
146146
assert out.find("hello") != -1
147147

148148
def test_rsync_non_verbose(

0 commit comments

Comments
 (0)