Remove commented live_account_test

This commit is contained in:
Edouard Oger 2019-01-30 16:09:29 -05:00
Родитель 3c06997034
Коммит fd85ecee7f
1 изменённых файлов: 0 добавлений и 19 удалений

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

@ -429,23 +429,4 @@ mod tests {
"247b675ffb4c46310bc87e26d712153abe5e1c90ef00a4784594f97ef54f2375"
);
}
// #[test]
// fn live_account_test() {
// let email = "testfxarustclient@restmail.net";
// let pwd = "testfxarustclient@restmail.net";
// let auth_pwd = auth_pwd(email, pwd);
// let config = Config::stable_dev().unwrap();
// let client = Client::new(&config);
// let resp = client.login(&email, &auth_pwd, false).unwrap();
// println!("Session Token obtained: {}", &resp.session_token);
// let session_token = hex::decode(resp.session_token).unwrap();
// let resp = client
// .oauth_token_with_session_token("5882386c6d801776", &session_token, &["profile"])
// .unwrap();
// println!("OAuth Token obtained: {}", &resp.access_token);
// }
}