Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce max line length from 150 to 120 characters #6174

Merged
merged 2 commits into from May 25, 2015
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Make variable binding more consistent with rest of the file

  • Loading branch information
frewsxcv committed May 24, 2015
commit 5793add4cdc9e96930160dfc90025f43607f9f5d
@@ -196,8 +196,8 @@ impl Handler {
const_chan.send(ConstellationMsg::WebDriverCommand(cmd_msg)).unwrap();
match reciever.recv().unwrap() {
Ok(value) => {
let v_res = ValueResponse::new(value.map(|x| WebElement::new(x).to_json()).to_json());
Ok(WebDriverResponse::Generic(v_res))
let value_resp = value.map(|x| WebElement::new(x).to_json()).to_json();
Ok(WebDriverResponse::Generic(ValueResponse::new(value_resp)))
}
Err(_) => Err(WebDriverError::new(ErrorStatus::InvalidSelector,
"Invalid selector"))
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.