Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
popzxc committed Jul 1, 2024
1 parent 0cf415b commit 8e2d24c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ impl Task for TaskA {

#[derive(IntoContext)]
struct SimpleStruct {
#[context(crate = "a")]
#[context(crate = a)]
_field: ResourceA,
}

#[derive(IntoContext)]
struct SimpleStruct2 {
#[context(crate = "b")]
#[context(crate = b)]
_field: ResourceA,
#[context(task)]
_field_2: TaskA,
Expand All @@ -41,7 +41,7 @@ struct SimpleStruct2 {
#[derive(IntoContext)]
struct SimpleStruct3 {
_field: ResourceA,
#[context(task, crate = "c")]
#[context(task, crate = c)]
_field_2: TaskA,
}

Expand Down

0 comments on commit 8e2d24c

Please sign in to comment.