Build: #558 failed

Job: Default Job failed

Stages & jobs

  1. Default Stage

1 add links: Test case result

The below summarizes the result of the test "1 add links" in build 558 of FLARECAST - propertyservice - Default Job. View test case history
Description
1 add links
Test class
link_tests.LinkTests
Method
test_1_add_links
Duration
< 1 sec
Status
Failed (Existing Failure)

Error Log

test setup failure
self = <class 'tests.link_tests.LinkTests'>

    @classmethod
    def setUpClass(self):
        super(LinkTests, self).setUpClass()
        post_request(self.service_url + self.__ADD_DATASETS, TEST_DATASETS)
        post_request(
            (
                (self.service_url + self.__ADD_REGIONS) %
                (TEST_REGIONS[1]["fk_dataset"])
            ),
            TEST_REGIONS
        )
        properties = get_request(
            (self.service_url + self.__GET_REGIONS) %
            (TEST_REGIONS[1]["fk_dataset"])
        )
        for idx, link in enumerate(self.test_links):
            link["fk_source"] = properties["data"][
                (idx + 0) % len(properties["data"])
>           ]["fc_id"]
E           TypeError: string indices must be integers

link_tests.py:39: TypeError