Skip to content

Commit e3b1303

Browse files
committed
fix test in resolve_proc_macro: Foo is Owner
1 parent 900b420 commit e3b1303

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/rust-analyzer/tests/slow-tests/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ pub fn foo(_input: TokenStream) -> TokenStream {
919919
expect![[r#"
920920
921921
```rust
922-
foo::Bar
922+
foo::Foo
923923
```
924924
925925
```rust

crates/test-utils/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ fn main() {
389389
/// also creates a file at `./target/.slow_tests_cookie` which serves as a flag
390390
/// that slow tests did run.
391391
pub fn skip_slow_tests() -> bool {
392-
let should_skip = std::env::var("CI").is_err() && std::env::var("RUN_SLOW_TESTS").is_err();
392+
let should_skip = std::env::var("RUN_SLOW_TESTS").is_err();
393393
if should_skip {
394394
eprintln!("ignoring slow test");
395395
} else {

0 commit comments

Comments
 (0)