Skip to content

Commit

Permalink
Fix merge conflict issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel- committed Oct 28, 2024
1 parent 2d955e4 commit c0f5a62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/ark/src/lsp/symbols.rs
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ mod tests {
};
assert_eq!(test_symbol("foo <- 1"), vec![new_symbol(
String::from("foo"),
SymbolKind::OBJECT,
SymbolKind::VARIABLE,
range,
)]);
}
Expand Down Expand Up @@ -372,7 +372,7 @@ mod tests {
character: 23,
},
};
let bar = new_symbol(String::from("bar"), SymbolKind::OBJECT, range);
let bar = new_symbol(String::from("bar"), SymbolKind::VARIABLE, range);

let range = Range {
start: Position {
Expand Down Expand Up @@ -403,7 +403,7 @@ mod tests {
character: 5,
},
};
let foo = new_symbol(String::from("foo"), SymbolKind::OBJECT, range);
let foo = new_symbol(String::from("foo"), SymbolKind::VARIABLE, range);

assert_eq!(test_symbol("{ foo <- 1 }"), vec![foo]);
}
Expand Down

0 comments on commit c0f5a62

Please sign in to comment.