Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
roosta committed Feb 10, 2020
1 parent 071df1f commit 84d81be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ mod tests {
let mut result: Vec<Vec<String>> = Vec::new();
let options = super::Options::default();
for workspace in workspaces {
result.push(super::get_classes(&workspace, &x_conn, &options)?);
result.push(super::get_classes(&workspace, &x_conn, &options));
}
let expected = vec![vec![], vec!["Gpick", "XTerm"]];
assert_eq!(result, expected);
Expand Down

0 comments on commit 84d81be

Please sign in to comment.