Switch to unified view

a/Allura/allura/tests/functional/test_rest.py b/Allura/allura/tests/functional/test_rest.py
...
...
43
43
44
    def test_subproject_ping(self):
44
    def test_subproject_ping(self):
45
        r = self.api_get('/rest/p/test/sub1/home/Home/')
45
        r = self.api_get('/rest/p/test/sub1/home/Home/')
46
        assert r.status_int == 200
46
        assert r.status_int == 200
47
        assert r.json['title'] == 'Home', r.json
47
        assert r.json['title'] == 'Home', r.json
48
49
    def test_project_code(self):
50
        r = self.api_get('/rest/p/test/')
51
        assert r.status_int == 200
52