Fix asset parser integration test (#7794)

* fix ci

* Fix TS asset parser CI
This commit is contained in:
Diego Imbert
2026-02-04 18:22:04 +00:00
committed by GitHub
parent fe1c8c5be5
commit 4ffc01b6bc
@@ -314,6 +314,8 @@ impl AssetsFinder {
#[cfg(test)]
mod tests {
use std::collections::BTreeMap;
use super::*;
#[test]
@@ -402,7 +404,10 @@ mod tests {
kind: AssetKind::DataTable,
path: "dt/friends".to_string(),
access_type: Some(RW),
columns: None,
columns: Some(BTreeMap::from([(
"name".to_string(),
AssetUsageAccessType::W
)])),
},
])
);