[1.8.x] Removed obsolete reference to media directory.
Backport of 787dd6519a
from master
This commit is contained in:
parent
82e323167d
commit
481d3bd617
|
@ -1 +1 @@
|
||||||
In app media directory.
|
In static directory.
|
||||||
|
|
|
@ -95,4 +95,4 @@ class StaticLiveServerView(LiveServerBase):
|
||||||
to discover app's static assets without having to collectstatic first.
|
to discover app's static assets without having to collectstatic first.
|
||||||
"""
|
"""
|
||||||
f = self.urlopen('/static/test/file.txt')
|
f = self.urlopen('/static/test/file.txt')
|
||||||
self.assertEqual(f.read().rstrip(b'\r\n'), b'In app media directory.')
|
self.assertEqual(f.read().rstrip(b'\r\n'), b'In static directory.')
|
||||||
|
|
Loading…
Reference in New Issue