From de0361811dfafcf9017dfb7e16185469d03930d4 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 8 Jan 2025 14:02:54 -0800 Subject: [PATCH] Fix some bindgen tests --- crates/component-macro/tests/expanded/conventions.rs | 6 +++--- crates/component-macro/tests/expanded/conventions_async.rs | 6 +++--- .../tests/expanded/conventions_tracing_async.rs | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/crates/component-macro/tests/expanded/conventions.rs b/crates/component-macro/tests/expanded/conventions.rs index eb341bb8b471..b808807a8140 100644 --- a/crates/component-macro/tests/expanded/conventions.rs +++ b/crates/component-macro/tests/expanded/conventions.rs @@ -230,7 +230,7 @@ pub mod foo { fn apple_pear_grape(&mut self) -> (); fn a0(&mut self) -> (); /// Comment out identifiers that collide when mapped to snake_case, for now; see - /// https://github.com/WebAssembly/component-model/issues/118 + /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() @@ -393,7 +393,7 @@ pub mod foo { Host::a0(*self) } /// Comment out identifiers that collide when mapped to snake_case, for now; see - /// https://github.com/WebAssembly/component-model/issues/118 + /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() @@ -756,7 +756,7 @@ pub mod exports { Ok(()) } /// Comment out identifiers that collide when mapped to snake_case, for now; see - /// https://github.com/WebAssembly/component-model/issues/118 + /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() diff --git a/crates/component-macro/tests/expanded/conventions_async.rs b/crates/component-macro/tests/expanded/conventions_async.rs index dfda26d25938..1e8f3bbd0693 100644 --- a/crates/component-macro/tests/expanded/conventions_async.rs +++ b/crates/component-macro/tests/expanded/conventions_async.rs @@ -238,7 +238,7 @@ pub mod foo { async fn apple_pear_grape(&mut self) -> (); async fn a0(&mut self) -> (); /// Comment out identifiers that collide when mapped to snake_case, for now; see - /// https://github.com/WebAssembly/component-model/issues/118 + /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() @@ -429,7 +429,7 @@ pub mod foo { Host::a0(*self).await } /// Comment out identifiers that collide when mapped to snake_case, for now; see - /// https://github.com/WebAssembly/component-model/issues/118 + /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() @@ -818,7 +818,7 @@ pub mod exports { Ok(()) } /// Comment out identifiers that collide when mapped to snake_case, for now; see - /// https://github.com/WebAssembly/component-model/issues/118 + /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() diff --git a/crates/component-macro/tests/expanded/conventions_tracing_async.rs b/crates/component-macro/tests/expanded/conventions_tracing_async.rs index d949eaae9fa2..011ca5b9f146 100644 --- a/crates/component-macro/tests/expanded/conventions_tracing_async.rs +++ b/crates/component-macro/tests/expanded/conventions_tracing_async.rs @@ -238,7 +238,7 @@ pub mod foo { async fn apple_pear_grape(&mut self) -> (); async fn a0(&mut self) -> (); /// Comment out identifiers that collide when mapped to snake_case, for now; see - /// https://github.com/WebAssembly/component-model/issues/118 + /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() @@ -589,7 +589,7 @@ pub mod foo { Host::a0(*self).await } /// Comment out identifiers that collide when mapped to snake_case, for now; see - /// https://github.com/WebAssembly/component-model/issues/118 + /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func() @@ -1065,7 +1065,7 @@ pub mod exports { Ok(()) } /// Comment out identifiers that collide when mapped to snake_case, for now; see - /// https://github.com/WebAssembly/component-model/issues/118 + /// https://github.com/WebAssembly/component-model/issues/118 /// APPLE: func() /// APPLE-pear-GRAPE: func() /// apple-PEAR-grape: func()