We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 692be72 commit 5931a52Copy full SHA for 5931a52
crates/ty_test/src/lib.rs
@@ -78,7 +78,7 @@ pub fn run(
78
println!("\n{}\n", test.name().bold().underline());
79
}
80
81
- if let Err(failures) = run_test(&mut db, relative_fixture_path, snapshot_path, &test) {
+ if let Err(failures) = failures {
82
let md_index = LineIndex::from_source_text(&source);
83
84
for test_failures in failures {
@@ -105,7 +105,7 @@ pub fn run(
105
106
107
108
- if let Err(inconsistencies) = run_module_resolution_consistency_test(&db) {
+ if let Err(inconsistencies) = inconsistencies {
109
any_failures = true;
110
for inconsistency in inconsistencies {
111
match output_format {
0 commit comments