Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #3567

Merged
merged 1 commit into from
Aug 24, 2023
Merged

Fix CI #3567

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions crates/test-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,13 @@ pub fn wasm_bindgen_test(
// main test harness. This is the entry point for all tests.
let name = format_ident!("__wbgt_{}_{}", ident, CNT.fetch_add(1, Ordering::SeqCst));
tokens.extend(
(quote! {
quote! {
#[no_mangle]
pub extern "C" fn #name(cx: &::wasm_bindgen_test::__rt::Context) {
let test_name = ::core::concat!(::core::module_path!(), "::", ::core::stringify!(#ident));
#test_body
}
})
.into_iter(),
},
);

tokens.extend(leading_tokens);
Expand Down
2 changes: 1 addition & 1 deletion crates/webidl/src/generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ impl Dictionary {
}
};

base_stream.extend(default_impl.into_iter());
base_stream.extend(default_impl);
}

base_stream
Expand Down