mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
Patch-Source: https://projects.torsion.org/borgmatic-collective/borgmatic/pulls/676
|
|
|
|
From ebe5c5e83903685742a39ae63b779d7a64527cff Mon Sep 17 00:00:00 2001
|
|
From: polyzen <polyzen@noreply.torsion.org>
|
|
Date: Fri, 14 Apr 2023 01:01:31 +0000
|
|
Subject: [PATCH] Fix "TypeError: 'module' object is not callable" in
|
|
test_commands.py
|
|
|
|
---
|
|
tests/integration/borg/test_commands.py | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/tests/integration/borg/test_commands.py b/tests/integration/borg/test_commands.py
|
|
index 49cd0e9..3f5f444 100644
|
|
--- a/tests/integration/borg/test_commands.py
|
|
+++ b/tests/integration/borg/test_commands.py
|
|
@@ -1,6 +1,6 @@
|
|
import copy
|
|
|
|
-import flexmock
|
|
+from flexmock import flexmock
|
|
|
|
import borgmatic.borg.info
|
|
import borgmatic.borg.list
|
|
@@ -105,4 +105,4 @@ def test_display_archives_info_command_does_not_duplicate_flags_or_raise():
|
|
|
|
borgmatic.borg.info.display_archives_info(
|
|
'repo', {}, '2.3.4', fuzz_argument(arguments, argument_name)
|
|
- )
|
|
+ )
|
|
\ No newline at end of file
|