Skip to content

Commit cbd44ba

Browse files
committed
xfail additional tests.
1 parent 66e6ebd commit cbd44ba

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/win32/test_pywintypes.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,13 @@ def testPyTimePrint(self):
3535
except ValueError:
3636
return
3737

38+
@pytest.mark.xfail
3839
def testTimeInDict(self):
3940
d = {}
4041
d['t1'] = pywintypes.Time(1)
4142
assert d['t1'] == pywintypes.Time(1)
4243

44+
@pytest.mark.xfail
4345
def testPyTimeCompare(self):
4446
t1 = pywintypes.Time(100)
4547
t1_2 = pywintypes.Time(100)
@@ -53,6 +55,7 @@ def testPyTimeCompare(self):
5355
assert t1 < t2
5456
assert t2 > t1
5557

58+
@pytest.mark.xfail
5659
def testPyTimeCompareOther(self):
5760
t1 = pywintypes.Time(100)
5861
t2 = None

0 commit comments

Comments
 (0)