diff options
author | Roald de Vries <rdevries@thoughtworks.com> | 2016-12-05 10:39:10 +0100 |
---|---|---|
committer | Roald de Vries <rdevries@thoughtworks.com> | 2016-12-05 10:39:10 +0100 |
commit | ed69fa3b7bf0b543b6c5d3f41504965a1b085808 (patch) | |
tree | 4c5c044069353181557f2c42ab22bbf2f360f827 /service/test/unit/resources | |
parent | 391cc55537a97ec8b2b55662db9c63f86ab885ef (diff) |
use static instead of {startup,public}-assets
Diffstat (limited to 'service/test/unit/resources')
-rw-r--r-- | service/test/unit/resources/test_login_resource.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/unit/resources/test_login_resource.py b/service/test/unit/resources/test_login_resource.py index 696b0c46..fcf76f5a 100644 --- a/service/test/unit/resources/test_login_resource.py +++ b/service/test/unit/resources/test_login_resource.py @@ -235,7 +235,7 @@ class TestLoginPOST(unittest.TestCase): def assert_interstitial_in_response(_): mock_authenticate.assert_called_once_with(self.username, self.password) - interstitial_js_in_template = '<script src="startup-assets/Interstitial.js"></script>' + interstitial_js_in_template = '<script src="static/Interstitial.js"></script>' self.assertIn(interstitial_js_in_template, self.request.written[0]) d.addCallback(assert_interstitial_in_response) |