summaryrefslogtreecommitdiff
path: root/git/test/performance/test_odb.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/test/performance/test_odb.py')
-rw-r--r--git/test/performance/test_odb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/performance/test_odb.py b/git/test/performance/test_odb.py
index 99b550ac..6f07a615 100644
--- a/git/test/performance/test_odb.py
+++ b/git/test/performance/test_odb.py
@@ -5,7 +5,7 @@ import sys
from time import time
from unittest.case import skipIf
-from git.compat import is_win, PY3
+from git.compat import PY3
from git.test.lib.helper import HIDE_WINDOWS_KNOWN_ERRORS
from .lib import (
@@ -15,7 +15,7 @@ from .lib import (
class TestObjDBPerformance(TestBigRepoR):
- @skipIf(HIDE_WINDOWS_KNOWN_ERRORS and is_win and PY3,
+ @skipIf(HIDE_WINDOWS_KNOWN_ERRORS and PY3,
"FIXME: smmp fails with: TypeError: Can't convert 'bytes' object to str implicitly")
def test_random_access(self):
results = [["Iterate Commits"], ["Iterate Blobs"], ["Retrieve Blob Data"]]