Uncomment persistence tests
This commit is contained in:
parent
a9ab413c5a
commit
eb8a0e7148
17 changed files with 437 additions and 442 deletions
|
@ -289,12 +289,12 @@ async fn test_code_context_retrieval_rust() {
|
|||
impl E {
|
||||
// This is also a preceding comment
|
||||
pub fn function_1() -> Option<()> {
|
||||
todo!();
|
||||
unimplemented!();
|
||||
}
|
||||
|
||||
// This is a preceding comment
|
||||
fn function_2() -> Result<()> {
|
||||
todo!();
|
||||
unimplemented!();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -344,7 +344,7 @@ async fn test_code_context_retrieval_rust() {
|
|||
"
|
||||
// This is also a preceding comment
|
||||
pub fn function_1() -> Option<()> {
|
||||
todo!();
|
||||
unimplemented!();
|
||||
}"
|
||||
.unindent(),
|
||||
text.find("pub fn function_1").unwrap(),
|
||||
|
@ -353,7 +353,7 @@ async fn test_code_context_retrieval_rust() {
|
|||
"
|
||||
// This is a preceding comment
|
||||
fn function_2() -> Result<()> {
|
||||
todo!();
|
||||
unimplemented!();
|
||||
}"
|
||||
.unindent(),
|
||||
text.find("fn function_2").unwrap(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue