From f4e1ba5995dbe2fe47ac8b66ef9a94d21a68adc0 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 3 Feb 2019 02:36:41 +0100 Subject: [PATCH] fix duplicate test method name, fixes #4311 thanks to Anthony Sottile for finding this! --- src/borg/testsuite/archiver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/testsuite/archiver.py b/src/borg/testsuite/archiver.py index 8b8bcf032..0142e78f5 100644 --- a/src/borg/testsuite/archiver.py +++ b/src/borg/testsuite/archiver.py @@ -2857,7 +2857,7 @@ def test_export_tar_strip_components_links(self): @requires_hardlinks @requires_gnutar - def test_extract_hardlinks(self): + def test_extract_hardlinks_tar(self): self._extract_hardlinks_setup() self.cmd('export-tar', self.repository_location + '::test', 'output.tar', 'input/dir1') with changedir('output'):