mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-12 08:05:44 +00:00
Fix asset parser integration test (#7794)
* fix ci * Fix TS asset parser CI
This commit is contained in:
@@ -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
|
||||
)])),
|
||||
},
|
||||
])
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user