Kaydet (Commit) a28e2e7c authored tarafından Ramiro Morales's avatar Ramiro Morales

Removed a .mo file incorrectly put under Git control.

üst f0bd5539
...@@ -56,6 +56,10 @@ class PercentRenderingTests(MessageCompilationTests): ...@@ -56,6 +56,10 @@ class PercentRenderingTests(MessageCompilationTests):
LOCALE='it' LOCALE='it'
MO_FILE='locale/%s/LC_MESSAGES/django.mo' % LOCALE MO_FILE='locale/%s/LC_MESSAGES/django.mo' % LOCALE
def setUp(self):
super(PercentRenderingTests, self).setUp()
self.addCleanup(os.unlink, os.path.join(test_dir, self.MO_FILE))
@override_settings(LOCALE_PATHS=(os.path.join(test_dir, 'locale'),)) @override_settings(LOCALE_PATHS=(os.path.join(test_dir, 'locale'),))
def test_percent_symbol_escaping(self): def test_percent_symbol_escaping(self):
from django.template import Template, Context from django.template import Template, Context
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment