23 lines
538 B
Text
23 lines
538 B
Text
|
Index: test/_common.py
|
||
|
--- test/_common.py.orig
|
||
|
+++ test/_common.py
|
||
|
@@ -22,9 +22,7 @@ import shutil
|
||
|
import unittest
|
||
|
from contextlib import contextmanager
|
||
|
|
||
|
-import reflink
|
||
|
|
||
|
-
|
||
|
# Mangle the search path to include the beets sources.
|
||
|
sys.path.insert(0, '..')
|
||
|
import beets.library # noqa: E402
|
||
|
@@ -54,7 +52,7 @@ _item_ident = 0
|
||
|
# OS feature test.
|
||
|
HAVE_SYMLINK = sys.platform != 'win32'
|
||
|
HAVE_HARDLINK = sys.platform != 'win32'
|
||
|
-HAVE_REFLINK = reflink.supported_at(tempfile.gettempdir())
|
||
|
+HAVE_REFLINK = False
|
||
|
|
||
|
|
||
|
def item(lib=None):
|