diff --git a/backend/parsers/windmill-parser-py-imports/tests/tests.rs b/backend/parsers/windmill-parser-py-imports/tests/tests.rs index d734cb8ead..9fee9b21c9 100644 --- a/backend/parsers/windmill-parser-py-imports/tests/tests.rs +++ b/backend/parsers/windmill-parser-py-imports/tests/tests.rs @@ -29,7 +29,15 @@ def main(): ) .await?; // println!("{}", serde_json::to_string(&r)?); - assert_eq!(r, vec!["matplotlib", "wmill", "zanzibar"]); + assert_eq!( + r, + vec![ + "matplotlib # (mapped from matplotlib.pyplot)", + "wmill", + "zanzibar # (mapped from zanzibar.estonie)" + ] + ); + Ok(()) }