Skip to content

Commit

Permalink
Enable testing that EventLoopProxy is Send + Sync on the web
Browse files Browse the repository at this point in the history
  • Loading branch information
Liamolucko committed Jun 18, 2022
1 parent e663c10 commit edd764e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion tests/send_objects.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#[allow(dead_code)]
fn needs_send<T: Send>() {}

#[cfg(not(target_arch = "wasm32"))]
#[test]
fn event_loop_proxy_send() {
#[allow(dead_code)]
Expand Down
1 change: 0 additions & 1 deletion tests/sync_object.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#[allow(dead_code)]
fn needs_sync<T: Sync>() {}

#[cfg(not(target_arch = "wasm32"))]
#[test]
fn event_loop_proxy_sync() {
#[allow(dead_code)]
Expand Down

0 comments on commit edd764e

Please sign in to comment.