summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorbenselme <benselme@gmail.com>2015-01-08 17:29:24 -0500
committerbenselme <benselme@gmail.com>2015-01-08 17:29:24 -0500
commitad2ff1b53a2c5c803b6cbdec08fe9ea1a3865333 (patch)
tree662a856e076b59eaaf08f8ad0189deb180afe972 /tests
parentdd64686bdabddd155d77146e7af25d6a88f2d189 (diff)
downloadbabel-ad2ff1b53a2c5c803b6cbdec08fe9ea1a3865333.tar.gz
Include Armin Ronacher's work on PluralRule mitsuhiko/babel@774047a
Diffstat (limited to 'tests')
-rw-r--r--tests/test_plural.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_plural.py b/tests/test_plural.py
index ad6da70..95e2330 100644
--- a/tests/test_plural.py
+++ b/tests/test_plural.py
@@ -18,7 +18,7 @@ import pytest
from babel import plural
-class test_plural_rule():
+def test_plural_rule():
rule = plural.PluralRule({'one': 'n is 1'})
assert rule(1) == 'one'
assert rule(2) == 'other'