diff options
author | Zara Gebru <zgebru@thoughtworks.com> | 2016-12-02 17:55:02 +0100 |
---|---|---|
committer | Zara Gebru <zgebru@thoughtworks.com> | 2016-12-02 17:55:02 +0100 |
commit | a0de084e04f02a5f09d5a14b86ece156f4f6df5f (patch) | |
tree | ac30e784628a6c967529d0a1fcefc14ad136b90c /service/test/unit/resources | |
parent | b14833fbb56bcd5bff0750c16fd9214009b955be (diff) |
[refactor] use static url instead of assets url
Diffstat (limited to 'service/test/unit/resources')
-rw-r--r-- | service/test/unit/resources/test_root_resource.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/unit/resources/test_root_resource.py b/service/test/unit/resources/test_root_resource.py index e72efe59..d42a4b38 100644 --- a/service/test/unit/resources/test_root_resource.py +++ b/service/test/unit/resources/test_root_resource.py @@ -300,7 +300,7 @@ class TestRootResource(unittest.TestCase): def test_assets_should_be_publicly_available(self, *mocks): self.root_resource.initialize(provider=mock(), authenticator=mock()) - request = DummyRequest(['assets', 'dummy.json']) + request = DummyRequest(['static', 'dummy.json']) request.addCookie = MagicMock(return_value='stubbed') d = self.web.get(request) |