Fix example test

This commit is contained in:
Lucien Greathouse
2018-11-27 21:17:38 -08:00
parent f1c5268670
commit 49a2bc8ace
2 changed files with 4 additions and 4 deletions

View File

@@ -17,11 +17,11 @@ lazy_static! {
}
#[test]
fn foo() {
let project_file_location = TEST_PROJECTS_ROOT.join("foo.json");
fn fullexample() {
let project_file_location = TEST_PROJECTS_ROOT.join("example.json");
let project = Project::load_exact(&project_file_location).unwrap();
assert_eq!(project.name, "foo");
assert_eq!(project.name, "example");
}
#[test]