summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-backup/borgmatic/files/borgmatic-1.5.16-flexmock_write_args.patch')
-rw-r--r--app-backup/borgmatic/files/borgmatic-1.5.16-flexmock_write_args.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/app-backup/borgmatic/files/borgmatic-1.5.16-flexmock_write_args.patch b/app-backup/borgmatic/files/borgmatic-1.5.16-flexmock_write_args.patch
new file mode 100644
index 000000000000..32937adadba0
--- /dev/null
+++ b/app-backup/borgmatic/files/borgmatic-1.5.16-flexmock_write_args.patch
@@ -0,0 +1,19 @@
+Apparently in the flexmock universe, sys.stdout.write() takes two
+arguments rather than one. As of late July 2021, upstream hasn't said
+a word of comment on this; see
+https://github.com/flexmock/flexmock/issues/37
+
+--- a/tests/unit/commands/test_borgmatic.py
++++ b/tests/unit/commands/test_borgmatic.py
+@@ -448,7 +448,10 @@
+ ['baz']
+ )
+ stdout = flexmock()
+- stdout.should_receive('write').with_args('["foo", "bar", "baz"]').once()
++ try:
++ stdout.should_receive('write').with_args('["foo", "bar", "baz"]').once()
++ except flexmock.MethodSignatureError:
++ stdout.should_receive('write').with_args('["foo", "bar", "baz"]', None).once()
+ flexmock(module.sys).stdout = stdout
+ arguments = {}
+