Fix more tests

This commit is contained in:
Brian Carroll 2022-11-12 09:12:28 +00:00
parent 894697b284
commit ed048c7c93
No known key found for this signature in database
GPG key ID: 9CF4E3BF9C4722C7
6 changed files with 9 additions and 4 deletions

View file

@ -88,7 +88,7 @@ mod test {
use pretty_assertions::assert_eq;
use roc_gen_llvm::{llvm::build::LlvmBackendMode, run_roc::RocCallResult, run_roc_dylib};
use roc_load::{ExecutionMode, LoadConfig, Threading};
use roc_reporting::report::RenderTarget;
use roc_reporting::report::{RenderTarget, DEFAULT_PALETTE};
use target_lexicon::Triple;
use crate::run::expect_mono_module_to_dylib;
@ -114,6 +114,7 @@ mod test {
let load_config = LoadConfig {
target_info,
render: RenderTarget::ColorTerminal,
palette: DEFAULT_PALETTE,
threading: Threading::Single,
exec_mode: ExecutionMode::Test,
};