diff options
| author | Florian Apolloner <florian@apolloner.eu> | 2013-09-11 04:30:45 -0700 |
|---|---|---|
| committer | Florian Apolloner <florian@apolloner.eu> | 2013-09-11 04:30:45 -0700 |
| commit | 434d122a74647c647f906aaabe235ae62601682d (patch) | |
| tree | 5488bf919d3167141870de043f77fb578bd322c0 | |
| parent | fba6af5a1ed5924f400666f6747e706a20cceadc (diff) | |
| parent | 3203f684e8e51cbfa1b39d7b6a56e340981ad4d5 (diff) | |
Merge pull request #1616 from loic/fix1.4
Fixed failing test introduced by 87d2750b39.
| -rw-r--r-- | tests/regressiontests/templates/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/regressiontests/templates/tests.py b/tests/regressiontests/templates/tests.py index 6b02c83cb8..d3defb8183 100644 --- a/tests/regressiontests/templates/tests.py +++ b/tests/regressiontests/templates/tests.py @@ -1766,6 +1766,8 @@ class RequestContextTests(BaseTemplateResponseTest): ) +@unittest.skipIf(' ' in __file__, + "The {%% ssi %%} tag in Django 1.4 doesn't support spaces in path.") class SSITests(unittest.TestCase): def setUp(self): self.this_dir = os.path.dirname(os.path.abspath(__file__)) |
