Bug 1145407: Fix mochitest 3 bustage on CLOSED TREE. r=bustage

--HG--
extra : rebase_source : d7e281e62c03169b80e07bdf205c40455fb231e9
This commit is contained in:
Byron Campen [:bwc] 2015-03-23 10:21:23 -07:00
Родитель 0e43c5e14d
Коммит 534d79b207
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -22,8 +22,8 @@
},
function PC_REMOTE_OVERRIDE_EXPECTED_STREAM_IDS(test) {
Object.keys(
test.pcRemote.expectedRemoteTrackTypesById).forEach(trackId => {
test.pcRemote.expectedRemoteTrackTypesById[trackId].streamId = "foo";
test.pcRemote.expectedRemoteTrackInfoById).forEach(trackId => {
test.pcRemote.expectedRemoteTrackInfoById[trackId].streamId = "foo";
});
}
]);
@ -35,8 +35,8 @@
},
function PC_LOCAL_OVERRIDE_EXPECTED_STREAM_IDS(test) {
Object.keys(
test.pcLocal.expectedRemoteTrackTypesById).forEach(trackId => {
test.pcLocal.expectedRemoteTrackTypesById[trackId].streamId = "foo";
test.pcLocal.expectedRemoteTrackInfoById).forEach(trackId => {
test.pcLocal.expectedRemoteTrackInfoById[trackId].streamId = "foo";
});
}
]);