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

Modify broken tests for string literals #849

Merged
merged 1 commit into from
May 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions tests/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3692,12 +3692,12 @@ fn literal_string_method() {
let _lock = sync!();
let src = r#"
fn check() {
"hello".st~arts_with("he");
"hello".to_lowerca~se();
}
"#;

let got = get_definition(src, None);
assert_eq!("starts_with", got.matchstr);
assert_eq!("to_lowercase", got.matchstr);
}

#[test]
Expand All @@ -3706,13 +3706,12 @@ fn literal_string_completes() {
let src = r#"
fn in_let() {
let foo = "hello";
foo.end~s_with("lo");
foo.to_lowerc~
}
"#;

let got = get_all_completions(src, None);
assert_eq!(1, got.len());
assert_eq!("ends_with", got[0].matchstr);
let got = get_only_completion(src, None);
assert_eq!("to_lowercase", got.matchstr);
}

#[test]
Expand Down