Author: Antonio Cuni <anto.c...@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 _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit