diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-11-25 06:47:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 20:17:21 +0530 |
commit | 8fc62f93bfeb63edf2ee875ee5d4f8b63728f838 (patch) | |
tree | e97e0931ac40bc4454a17b7b6717ed522e2fac9a /ops/deno.rs | |
parent | d80af8324d61ce6fa54f6c9c4a2658c18b9c2428 (diff) |
fix(ops): circular dependency in deno_ops test (#16809)
Diffstat (limited to 'ops/deno.rs')
-rw-r--r-- | ops/deno.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ops/deno.rs b/ops/deno.rs index 67af603e9..07f50489a 100644 --- a/ops/deno.rs +++ b/ops/deno.rs @@ -1,4 +1,5 @@ // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +#![cfg(not(test))] use proc_macro2::{Span, TokenStream}; use proc_macro_crate::{crate_name, FoundCrate}; |