Skip to content

Commit

Permalink
Reduce acceptance test sled memory usage (#1236)
Browse files Browse the repository at this point in the history
* Use the default memory limit in the acceptance tests

PR #1233 changed the default `memory_cache_bytes`, but left the
acceptance tests with their old value.
  • Loading branch information
teor2345 authored Nov 9, 2020
1 parent 818fede commit efef2a2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion zebrad/tests/acceptance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ use zebrad::config::ZebradConfig;
fn default_test_config() -> Result<ZebradConfig> {
let mut config = ZebradConfig::default();
config.state = zebra_state::Config::ephemeral();
config.state.memory_cache_bytes = 256000000;
config.network.listen_addr = "127.0.0.1:0".parse()?;

Ok(config)
Expand Down

0 comments on commit efef2a2

Please sign in to comment.