Bug 1166832 - Fix missing semicolon on return. draft
authorMichael Froman <mfroman@mozilla.com>
Thu, 14 Jan 2016 10:50:51 -0600
changeset 321732 1ab20802f33e0b6f86d328c31d652e8080f9aaf7
parent 321731 fec02cdbde9a4ebad923d2dcc1a76431b2416a45
child 321735 8409357e438471444e9f2cd05f0d45990457ddf9
push id9446
push usermfroman@nostrum.com
push dateThu, 14 Jan 2016 16:53:29 +0000
bugs1166832
milestone46.0a1
Bug 1166832 - Fix missing semicolon on return.
dom/media/tests/mochitest/test_peerConnection_multiple_captureStream_canvas_2d.html
--- a/dom/media/tests/mochitest/test_peerConnection_multiple_captureStream_canvas_2d.html
+++ b/dom/media/tests/mochitest/test_peerConnection_multiple_captureStream_canvas_2d.html
@@ -62,17 +62,17 @@ runNetworkTest(() => {
                                      "pcRemote's remote2 should become blue")
                ]),
                Promise.all([
                  h.waitForPixelColor(vremote2, h.green, 128,
                                      "pcRemote's remote2 should become green"),
                  h.waitForPixelColor(vremote1, h.blue, 128,
                                      "pcRemote's remote1 should become blue")
                ])
-             ])
+             ]);
     },
     function DRAW_LOCAL1_RED() {
       // After requesting a frame it will be captured at the time of next render.
       // Next render will happen at next stable state, at the earliest,
       // i.e., this order of `requestFrame(); draw();` should work.
       stream1.requestFrame();
       h.drawColor(canvas1, h.red);
     },