From 3847a59f8538585b6819fd3886d50ddae5c5e884 Mon Sep 17 00:00:00 2001 From: Roger-luo Date: Wed, 15 Feb 2023 13:26:34 -0500 Subject: [PATCH] fix: issue #12 --- src/ion/blueprints/components/tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ion/blueprints/components/tests.rs b/src/ion/blueprints/components/tests.rs index fe9a44f..1adcf2b 100644 --- a/src/ion/blueprints/components/tests.rs +++ b/src/ion/blueprints/components/tests.rs @@ -14,11 +14,11 @@ pub struct ProjectTest { impl ProjectTest { pub fn default_template() -> String { - "tests/runtests.jl.hbs".into() + "test/runtests.jl.hbs".into() } pub fn default_project() -> String { - "tests/Project.toml.hbs".into() + "test/Project.toml.hbs".into() } }