Bug 949949 - [B2G] remove telephony.onincoming before test case finishes. r=vicamo

This commit is contained in:
Hsin-Yi Tsai 2013-12-13 18:22:18 -08:00
Родитель e7c01f9f5b
Коммит 52d7945902
3 изменённых файлов: 3 добавлений и 2 удалений

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

@ -152,7 +152,7 @@ function remoteDial(number) {
telephony.onincoming = function onincoming(event) {
log("Received 'incoming' call event.");
telephony.onimcoming = null;
telephony.onincoming = null;
let call = event.call;

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

@ -97,7 +97,7 @@ function remoteDial(number) {
telephony.onincoming = function onincoming(event) {
log("Received 'incoming' call event.");
telephony.onimcoming = null;
telephony.onincoming = null;
let call = event.call;

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

@ -91,6 +91,7 @@ function hangUp() {
}
function cleanUp() {
telephony.onincoming = null;
finish();
}