Bug 1010670 - allow test_peerConnection_basic* to be executed by steeplechase. r=ted

This commit is contained in:
Nils Ohlmeier [:drno] 2014-05-14 21:17:00 +02:00
parent 0354862afe
commit b8ba3b5ea7
3 changed files with 6 additions and 6 deletions

View File

@ -18,8 +18,8 @@
});
var test;
runTest(function () {
test = new PeerConnectionTest();
runTest(function (options) {
test = new PeerConnectionTest(options);
test.setMediaConstraints([{audio: true}, {video: true}],
[{audio: true}, {video: true}]);
test.run();

View File

@ -18,8 +18,8 @@
});
var test;
runTest(function () {
test = new PeerConnectionTest();
runTest(function (options) {
test = new PeerConnectionTest(options);
test.setMediaConstraints([{audio: true, video: true}],
[{audio: true, video: true}]);
test.run();

View File

@ -17,8 +17,8 @@
});
var test;
runTest(function () {
test = new PeerConnectionTest();
runTest(function (options) {
test = new PeerConnectionTest(options);
test.setMediaConstraints([{video: true}], [{video: true}]);
test.run();
});