Changeset 258956 in webkit


Ignore:
Timestamp:
Mar 24, 2020 4:27:48 PM (4 years ago)
Author:
Jonathan Bedard
Message:

results.webkit.org: Documentation for uncollapsed failure endpoints is wrong
https://bugs.webkit.org/show_bug.cgi?id=209496

Rubber-stamped by Aakash Jain.

  • resultsdbpy/resultsdbpy/view/templates/documentation.html:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r258951 r258956  
     12020-03-24  Jonathan Bedard  <jbedard@apple.com>
     2
     3        results.webkit.org: Documentation for uncollapsed failure endpoints is wrong
     4        https://bugs.webkit.org/show_bug.cgi?id=209496
     5
     6        Rubber-stamped by Aakash Jain.
     7
     8        * resultsdbpy/resultsdbpy/view/templates/documentation.html:
     9
    1102020-03-24  Jonathan Bedard  <jbedard@apple.com>
    211
  • trunk/Tools/resultsdbpy/resultsdbpy/view/templates/documentation.html

    r258947 r258956  
    361361                    '    {\n' +
    362362                    '        "configuration": <configuration-object-a>,\n' +
    363                     '        "results": {\n' +
    364                     '            "start_time": <UTC time test run started>,\n' +
    365                     '            "uuid": <UUID for test run>,\n' +
    366                     '            "suite.sub-1.test-1": "FAIL",\n' +
    367                     '            "suite.sub-1.test-2": "FAIL",\n' +
    368                     '        }\n' +
     363                    '        "results": [\n' +
     364                    '            {\n' +
     365                    '                "start_time": <UTC time test run started>,\n' +
     366                    '                "uuid": <UUID for test run>,\n' +
     367                    '                "suite.sub-1.test-1": "FAIL",\n' +
     368                    '                "suite.sub-1.test-2": "FAIL",\n' +
     369                    '            }\n' +
     370                    '        ]\n' +
    369371                    '    }, {\n' +
    370372                    '        "configuration": <configuration-object-b>,\n' +
    371                     '        "results": {\n' +
    372                     '            "start_time": <UTC time test run started>,\n' +
    373                     '            "uuid": <UUID for test run>,\n' +
    374                     '            "suite.sub-1.test-1": "FAIL",\n' +
    375                     '            "suite.sub-2.test-1": "CRASH",\n' +
    376                     '        }\n' +
     373                    '        "results": [\n' +
     374                    '            {\n' +
     375                    '                "start_time": <UTC time test run started>,\n' +
     376                    '                "uuid": <UUID for test run>,\n' +
     377                    '                "suite.sub-1.test-1": "FAIL",\n' +
     378                    '                "suite.sub-1.test-2": "CRASH",\n' +
     379                    '            }\n' +
     380                    '        ]\n' +
    377381                    '    }\n' +
    378382                    ']'),
Note: See TracChangeset for help on using the changeset viewer.