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] #[test]
fn foo() { fn fullexample() {
let project_file_location = TEST_PROJECTS_ROOT.join("foo.json"); let project_file_location = TEST_PROJECTS_ROOT.join("example.json");
let project = Project::load_exact(&project_file_location).unwrap(); let project = Project::load_exact(&project_file_location).unwrap();
assert_eq!(project.name, "foo"); assert_eq!(project.name, "example");
} }
#[test] #[test]

View File

@@ -1,5 +1,5 @@
{ {
"name": "foo", "name": "example",
"tree": { "tree": {
"$className": "DataModel", "$className": "DataModel",
"ReplicatedStorage": { "ReplicatedStorage": {