File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -59,13 +59,13 @@ mod examples {
5959
6060 #[ test]
6161 fn ensure_identical_output ( ) {
62- // Read all .t files from examples/prototype/
62+ // Read all .tq files from examples/prototype/
6363 let dir = Path :: new ( "examples/golden" ) ;
6464
6565 // Ensure the directory exists
6666 assert ! ( dir. exists( ) , "examples directory missing" ) ;
6767
68- // Get all .t files in the directory
68+ // Get all .tq files in the directory
6969 let entries = fs:: read_dir ( dir) . expect ( "Failed to read examples directory" ) ;
7070
7171 let mut files = Vec :: new ( ) ;
@@ -76,14 +76,14 @@ mod examples {
7676 if path
7777 . extension ( )
7878 . and_then ( |s| s. to_str ( ) )
79- == Some ( "t " )
79+ == Some ( "tq " )
8080 {
8181 files. push ( path) ;
8282 }
8383 }
8484
8585 // Ensure we found some test files
86- assert ! ( !files. is_empty( ) , "No .t files found in examples directory" ) ;
86+ assert ! ( !files. is_empty( ) , "No .tq files found in examples directory" ) ;
8787
8888 let mut failures = Vec :: new ( ) ;
8989
You can’t perform that action at this time.
0 commit comments