1 files changed, 1 insertions(+), 1 deletions(-)
M tests/lib.rs
M tests/lib.rs => tests/lib.rs +1 -1
@@ 14,7 14,7 @@ fn get_gog() -> Gog {
.unwrap()
.read_to_string(&mut token_json)
.unwrap();
- let mut token = Token::from_response(&token_json).unwrap();
+ let mut token = Token::from_response(token_json.as_str()).unwrap();
token = token.refresh().unwrap();
Gog::new(token)
}