Skip to content

Commit 08f8c1d

Browse files
committed
fixes skipif/skipIf typo
1 parent e15fd09 commit 08f8c1d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Release 1.2 (dev)
22
-----------------
33
* better support for django 1.9 ( ``TemplateDoesNotExist`` is now in ``django.template.exceptions``
4+
* improved eror message in ``ConcurrencyListEditableMixin`` :issue:`63` :issue:`64`
5+
* fixes :issue:`61`. Error in ``ConditionalVersionField`` (thanks ticosax)
6+
* fixes ``skipif`` test in pypy
47

58

69
Release 1.1 (13 Feb 2016)

tests/test_threads.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from concurrency.utils import refetch
1212

1313

14-
@pytest.mark.skypIf(hasattr(sys, "pypy_translation_info"), reason="skip if pypy")
14+
@pytest.mark.skypif(hasattr(sys, "pypy_translation_info"), reason="skip if pypy")
1515
@pytest.mark.django_db(transaction=True)
1616
def test_threads():
1717
if db.connection.vendor == 'sqlite':

0 commit comments

Comments
 (0)