Skip to content

Commit

Permalink
Update tests to reflect updated field name for Directory
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewlacy committed Jan 28, 2024
1 parent a0ef002 commit 4708624
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/brioche/tests/script_eval.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async fn test_eval_basic() -> anyhow::Result<()> {
briocheSerialize: () => {
return {
type: "directory",
tree: null,
listingBlob: null,
}
},
};
Expand Down Expand Up @@ -52,7 +52,7 @@ async fn test_eval_custom_export() -> anyhow::Result<()> {
briocheSerialize: () => {
return {
type: "directory",
tree: null,
listingBlob: null,
}
},
};
Expand Down Expand Up @@ -86,7 +86,7 @@ async fn test_eval_async() -> anyhow::Result<()> {
briocheSerialize: () => {
return {
type: "directory",
tree: null,
listingBlob: null,
}
},
};
Expand Down Expand Up @@ -120,7 +120,7 @@ async fn test_eval_serialize_async() -> anyhow::Result<()> {
briocheSerialize: async () => {
return {
type: "directory",
tree: null,
listingBlob: null,
}
},
};
Expand Down Expand Up @@ -153,7 +153,7 @@ async fn test_eval_import_local() -> anyhow::Result<()> {
briocheSerialize: () => {
return {
type: "directory",
tree: null,
listingBlob: null,
}
},
};
Expand Down Expand Up @@ -217,7 +217,7 @@ async fn test_eval_import_dep() -> anyhow::Result<()> {
briocheSerialize: () => {
return {
type: "directory",
tree: null,
listingBlob: null,
}
},
};
Expand Down

0 comments on commit 4708624

Please sign in to comment.