Skip to content

Commit 59bf8a5

Browse files
authored
fix-test-errors (#23)
1 parent 36f431a commit 59bf8a5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Generate Docs (reference docs.rs)
3838
run: |
3939
cargo rustdoc -- --cfg docsrs -Z unstable-options $(cargo metadata --format-version 1 | jq --raw-output '.packages | map("--extern-html-root-url=\(.name)=https://docs.rs/\(.name)/\(.version)") | join(" ")')
40-
- uses: actions/upload-pages-artifact@v1
40+
- uses: actions/upload-pages-artifact@v4
4141
with:
4242
path: 'target/doc'
4343
- id: deployment

examples/macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ quote = "1"
1414
syn = { version = "2", features = ["full"] }
1515

1616
[dev-dependencies]
17-
trybuild = "1.0.80"
17+
trybuild = "1.0.111"
1818

1919
[package.metadata.release]
2020
release = false

examples/macro/tests/ui/emit.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ error: example error
99
error: example error
1010
--> tests/ui/emit.rs:8:5
1111
|
12-
8 | / emit!(
13-
9 | | struct Struct;
12+
8 | / emit!(
13+
9 | | struct Struct;
1414
10 | | );
1515
| |_____^
1616
|

examples/no_macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ quote = "1"
1414
syn = { version = "2", features = ["full"] }
1515

1616
[dev-dependencies]
17-
trybuild = "1.0.80"
17+
trybuild = "1.0.111"
1818

1919
[package.metadata.release]
2020
release = false

examples/no_macro/tests/ui/emit.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ error: example error
99
error: example error
1010
--> tests/ui/emit.rs:8:5
1111
|
12-
8 | / emit!(
13-
9 | | struct Struct;
12+
8 | / emit!(
13+
9 | | struct Struct;
1414
10 | | );
1515
| |_____^
1616
|

0 commit comments

Comments
 (0)