Skip to content

Commit

Permalink
Don't set no_std for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pitdicker committed Apr 4, 2024
1 parent b68bff7 commit cdb5f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrono-tz/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
//! assert!(TZ_VARIANTS.iter().any(|v| *v == Tz::UTC));
//! ```
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(not(any(feature = "std", test)), no_std)]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]

#[cfg(feature = "serde")]
Expand Down

0 comments on commit cdb5f0b

Please sign in to comment.