[pypy-commit] pypy py3k: we have one more test now, adapt the expected number of passed ones

antocuni noreply at buildbot.pypy.org
Fri Mar 2 11:25:09 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r53098:e1d8fdaa2ed9
Date: 2012-03-02 11:20 +0100
http://bitbucket.org/pypy/pypy/changeset/e1d8fdaa2ed9/

Log:	we have one more test now, adapt the expected number of passed ones

diff --git a/pypy/tool/pytest/test/test_conftest1.py b/pypy/tool/pytest/test/test_conftest1.py
--- a/pypy/tool/pytest/test/test_conftest1.py
+++ b/pypy/tool/pytest/test/test_conftest1.py
@@ -17,7 +17,7 @@
     def test_selection_by_keyword_app(self, testdir): 
         sorter = testdir.inline_run("-k", "applevel -docstring", innertest)
         passed, skipped, failed = sorter.listoutcomes()
-        assert len(passed) == 2
+        assert len(passed) == 3
         assert failed == []
         assert skipped == []
         assert "app_test_something" in passed[0].nodeid
@@ -27,7 +27,7 @@
         sorter = testdir.inline_run(innertest, '-k', 'applevel -docstring',
                                     '--runappdirect')
         passed, skipped, failed = sorter.listoutcomes()
-        assert len(passed) == 2
+        assert len(passed) == 3
         print passed
         assert "app_test_something" in passed[0].nodeid
         assert "test_method_app" in passed[1].nodeid


More information about the pypy-commit mailing list