Bug 1517196 - [geckodriver] Fix unit test for invalid frame id. r=ato

Depends on D16049

Differential Revision: https://phabricator.services.mozilla.com/D15953

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Henrik Skupin 2019-01-09 16:22:00 +00:00
Родитель 6740c4d043
Коммит 8044935482
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -989,7 +989,7 @@ mod tests {
#[test]
fn test_json_switch_to_frame_parameters_with_invalid_id_field() {
let json = r#"{"id":"3""#;
let json = r#"{"id":"3"}"#;
assert!(serde_json::from_str::<SwitchToFrameParameters>(&json).is_err());
}