Skip to content

Commit e3581fe

Browse files
update tests
1 parent 1252c5c commit e3581fe

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

crates/bindings/tests/ui/views.stderr

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,27 +77,27 @@ error[E0425]: cannot find type `T` in this scope
7777
201 | fn view_nonexistent_table(ctx: &ViewContext) -> impl Query<T> {
7878
| ^ not found in this scope
7979

80-
error[E0277]: the trait bound `ViewKind<ReducerContext>: ViewKindTrait` is not satisfied
80+
error[E0277]: the trait bound `spacetimedb::rt::ViewKind<ReducerContext>: ViewKindTrait` is not satisfied
8181
--> tests/ui/views.rs:106:1
8282
|
8383
106 | #[view(accessor = view_def_wrong_context, public)]
84-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `ViewKindTrait` is not implemented for `ViewKind<ReducerContext>`
84+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `ViewKindTrait` is not implemented for `spacetimedb::rt::ViewKind<ReducerContext>`
8585
|
8686
help: the following other types implement trait `ViewKindTrait`
8787
--> src/rt.rs
8888
|
8989
| impl ViewKindTrait for ViewKind<ViewContext> {
90-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `ViewKind<ViewContext>`
90+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `spacetimedb::rt::ViewKind<ViewContext>`
9191
...
9292
| impl ViewKindTrait for ViewKind<AnonymousViewContext> {
93-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `ViewKind<AnonymousViewContext>`
93+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `spacetimedb::rt::ViewKind<AnonymousViewContext>`
9494
= note: this error originates in the attribute macro `view` (in Nightly builds, run with -Z macro-backtrace for more info)
9595

9696
error[E0276]: impl has stricter requirements than trait
9797
--> tests/ui/views.rs:106:1
9898
|
9999
106 | #[view(accessor = view_def_wrong_context, public)]
100-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `ViewKind<ReducerContext>: ViewKindTrait`
100+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `spacetimedb::rt::ViewKind<ReducerContext>: ViewKindTrait`
101101
|
102102
= note: this error originates in the attribute macro `view` (in Nightly builds, run with -Z macro-backtrace for more info)
103103

0 commit comments

Comments
 (0)