Fix a gen test for dev backend

This commit is contained in:
Richard Feldman 2022-07-09 19:23:22 -04:00
parent f45e3dbb46
commit 081b1d2612
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798

View file

@ -30,11 +30,11 @@ pub fn helper(
_leak: bool,
lazy_literals: bool,
) -> (String, Vec<roc_problem::can::Problem>, Library) {
use std::path::{Path, PathBuf};
use std::path::PathBuf;
let dir = tempdir().unwrap();
let filename = PathBuf::from("Test.roc");
let src_dir = Path::new("fake/test/path");
let src_dir = PathBuf::from("fake/test/path");
let app_o_file = dir.path().join("app.o");
let module_src;