1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

Fixed tests after removing sentry logging

This commit is contained in:
Mark McDowall 2019-04-27 18:44:56 -07:00
parent 7991ed0154
commit e7a979d6b4
2 changed files with 0 additions and 3 deletions

View File

@ -81,7 +81,6 @@ public void should_return_AudioFormat_by_default()
};
MediaInfoFormatter.FormatAudioCodec(mediaInfoModel, sceneName).Should().Be(mediaInfoModel.AudioFormat);
ExceptionVerification.ExpectedWarns(1);
}
}
}

View File

@ -91,7 +91,6 @@ public void should_warn_on_unknown_video_format(string videoFormatPack, string s
};
MediaInfoFormatter.FormatVideoCodec(mediaInfoModel, sceneName).Should().Be(expectedFormat);
ExceptionVerification.ExpectedWarns(1);
}
[Test]
@ -103,7 +102,6 @@ public void should_return_VideoFormat_by_default()
};
MediaInfoFormatter.FormatVideoCodec(mediaInfoModel, null).Should().Be(mediaInfoModel.VideoFormat);
ExceptionVerification.ExpectedWarns(1);
}
}
}