@@ -2573,7 +2573,7 @@ public async Task SequenceMultiply() {
25732573 var analysis = await server . OpenDefaultDocumentAndGetAnalysisAsync ( text ) ;
25742574 analysis . Should ( ) . HaveVariable ( "y" ) . WithDescription ( "tuple" )
25752575 . And . HaveVariable ( "y1" ) . WithDescription ( "tuple[int, int, int]" )
2576- . And . HaveVariable ( "oar" ) . WithDescription ( "list[int]" )
2576+ . And . HaveVariable ( "oar" ) . WithDescription ( "list[int, int, int ]" )
25772577 . And . HaveVariable ( "oar2" ) . WithDescription ( "list" ) ;
25782578 }
25792579 }
@@ -2597,7 +2597,7 @@ public async Task SequenceMultiply_2() {
25972597 var analysis = await server . OpenDefaultDocumentAndGetAnalysisAsync ( text ) ;
25982598 analysis . Should ( ) . HaveVariable ( "y" ) . WithDescription ( "tuple" )
25992599 . And . HaveVariable ( "y1" ) . WithDescription ( "tuple[int, int, int]" )
2600- . And . HaveVariable ( "oar" ) . WithDescription ( "list[int]" )
2600+ . And . HaveVariable ( "oar" ) . WithDescription ( "list[int, int, int ]" )
26012601 . And . HaveVariable ( "oar2" ) . WithDescription ( "list" ) ;
26022602 }
26032603 }
@@ -5426,7 +5426,9 @@ import fob.y as y
54265426 await server . SendDidOpenTextDocument ( uriSrc2 , src2 ) ;
54275427 await server . SendDidOpenTextDocument ( uriSrc3 , src3 ) ;
54285428
5429+ await server . GetAnalysisAsync ( uriSrc1 ) ;
54295430 var analysis = await server . GetAnalysisAsync ( uriSrc2 ) ;
5431+
54305432 analysis . Should ( ) . HaveVariable ( "y" ) . WithDescription ( "Python module fob.y" )
54315433 . And . HaveVariable ( "abc" ) . OfType ( BuiltinTypeId . Int ) ;
54325434 }
0 commit comments