Skip to content
Merged
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
1 change: 0 additions & 1 deletion proptest/src/arbitrary/_alloc/alloc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ use crate::arbitrary::*;
use crate::strategy::statics::static_map;
use crate::strategy::*;

arbitrary!(self::alloc::CannotReallocInPlace; self::alloc::CannotReallocInPlace);
arbitrary!(self::alloc::Global; self::alloc::Global);

// Not Debug.
Expand Down
3 changes: 1 addition & 2 deletions proptest/src/test_runner/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,7 @@ fn default_default_config() -> Config {
// defaults.
#[cfg(feature = "std")]
lazy_static! {
static ref DEFAULT_CONFIG: Config =
{ contextualize_config(default_default_config()) };
static ref DEFAULT_CONFIG: Config = contextualize_config(default_default_config());
}

/// Configuration for how a proptest test should be run.
Expand Down