From 55baca9d5db2f51da26074429f594fbb76716769 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 24 Apr 2013 17:35:42 +0200 Subject: [PATCH] fix test --- tests/run/initial_file_path.srctree | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run/initial_file_path.srctree b/tests/run/initial_file_path.srctree index 4f92756..a55df68 100644 --- a/tests/run/initial_file_path.srctree +++ b/tests/run/initial_file_path.srctree @@ -1,5 +1,5 @@ PYTHON setup.py build_ext --inplace -PYTHON -c "import my_test_package as p; assert not p.__file__.rstrip('co').endswith('.py'), p.__file__; m.test()" +PYTHON -c "import my_test_package as p; assert not p.__file__.rstrip('co').endswith('.py'), p.__file__; p.test()" PYTHON -c "import my_test_package.a as a; a.test()" PYTHON -c "import my_test_package.another as p; assert not p.__file__.rstrip('co').endswith('.py'), p.__file__; p.test()" PYTHON -c "import my_test_package.another.a as a; a.test()" -- 2.7.4