stricter test

This commit is contained in:
Bryan Stitt 2022-11-20 14:55:42 -08:00 committed by Bryan Stitt
parent 311f6f1ac6
commit 92fe4b858a

@ -262,7 +262,7 @@ mod tests {
let anvil_provider = Provider::<Http>::try_from(anvil.endpoint()).unwrap(); let anvil_provider = Provider::<Http>::try_from(anvil.endpoint()).unwrap();
// mine a block because my code doesn't like being on block 0 // mine a block because my code doesn't like being on block 0
// TODO: make block 0 okay? // TODO: make block 0 okay? is it okay now?
let _: U256 = anvil_provider let _: U256 = anvil_provider
.request("evm_mine", None::<()>) .request("evm_mine", None::<()>)
.await .await
@ -277,7 +277,8 @@ mod tests {
cookie_key_filename: "./does/not/exist/development_cookie_key".to_string(), cookie_key_filename: "./does/not/exist/development_cookie_key".to_string(),
}; };
// make a test AppConfig // make a test TopConfig
// TODO: load TopConfig from a file? CliConfig could have `cli_config.load_top_config`
let app_config = TopConfig { let app_config = TopConfig {
app: AppConfig { app: AppConfig {
chain_id: 31337, chain_id: 31337,
@ -367,7 +368,7 @@ mod tests {
let second_block_num = anvil_result.number.unwrap(); let second_block_num = anvil_result.number.unwrap();
assert_ne!(first_block_num, second_block_num); assert_eq!(first_block_num, second_block_num - 1);
// tell the test app to shut down // tell the test app to shut down
shutdown_sender.send(()).unwrap(); shutdown_sender.send(()).unwrap();