Title: [258956] trunk/Tools
Revision
258956
Author
[email protected]
Date
2020-03-24 16:27:48 -0700 (Tue, 24 Mar 2020)

Log 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:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (258955 => 258956)


--- trunk/Tools/ChangeLog	2020-03-24 23:17:09 UTC (rev 258955)
+++ trunk/Tools/ChangeLog	2020-03-24 23:27:48 UTC (rev 258956)
@@ -1,5 +1,14 @@
 2020-03-24  Jonathan Bedard  <[email protected]>
 
+        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:
+
+2020-03-24  Jonathan Bedard  <[email protected]>
+
         results.webkit.org: Filter suite results by expectation by default
         https://bugs.webkit.org/show_bug.cgi?id=209500
 

Modified: trunk/Tools/resultsdbpy/resultsdbpy/view/templates/documentation.html (258955 => 258956)


--- trunk/Tools/resultsdbpy/resultsdbpy/view/templates/documentation.html	2020-03-24 23:17:09 UTC (rev 258955)
+++ trunk/Tools/resultsdbpy/resultsdbpy/view/templates/documentation.html	2020-03-24 23:27:48 UTC (rev 258956)
@@ -360,20 +360,24 @@
                     codeBlock('[\n' +
                     '    {\n' +
                     '        "configuration": <configuration-object-a>,\n' +
-                    '        "results": {\n' +
-                    '            "start_time": <UTC time test run started>,\n' +
-                    '            "uuid": <UUID for test run>,\n' +
-                    '            "suite.sub-1.test-1": "FAIL",\n' +
-                    '            "suite.sub-1.test-2": "FAIL",\n' +
-                    '        }\n' +
+                    '        "results": [\n' +
+                    '            {\n' +
+                    '                "start_time": <UTC time test run started>,\n' +
+                    '                "uuid": <UUID for test run>,\n' +
+                    '                "suite.sub-1.test-1": "FAIL",\n' +
+                    '                "suite.sub-1.test-2": "FAIL",\n' +
+                    '            }\n' +
+                    '        ]\n' +
                     '    }, {\n' +
                     '        "configuration": <configuration-object-b>,\n' +
-                    '        "results": {\n' +
-                    '            "start_time": <UTC time test run started>,\n' +
-                    '            "uuid": <UUID for test run>,\n' +
-                    '            "suite.sub-1.test-1": "FAIL",\n' +
-                    '            "suite.sub-2.test-1": "CRASH",\n' +
-                    '        }\n' +
+                    '        "results": [\n' +
+                    '            {\n' +
+                    '                "start_time": <UTC time test run started>,\n' +
+                    '                "uuid": <UUID for test run>,\n' +
+                    '                "suite.sub-1.test-1": "FAIL",\n' +
+                    '                "suite.sub-1.test-2": "CRASH",\n' +
+                    '            }\n' +
+                    '        ]\n' +
                     '    }\n' +
                     ']'),
                     `where &ltconfiguration-object-a&gt and &ltconfiguration-object-b&gt are both ${localLink(['Query Parameters', 'Configuration'], 'configuration objects')}.`,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to