Browse Source

Enable commented out test

David Peter 1 year ago
parent
commit
8ad157ca81
1 changed files with 1 additions and 2 deletions
  1. 1 2
      numbat/tests/interpreter.rs

+ 1 - 2
numbat/tests/interpreter.rs

@@ -814,6 +814,5 @@ fn test_statement_pretty_printing() {
     expect_pretty_print("fn f(x: Length) = 2 x", "fn f(x: Length) -> Length = 2 x");
     expect_pretty_print("fn f(x) -> Length = 2 x", "fn f(x: Length) -> Length = 2 x");
 
-    // TODO:
-    // expect_pretty_print("fn f<Z>(z: Z) = z", "fn f<Z>(z: Z) -> Z = z");
+    expect_pretty_print("fn f<Z>(z: Z) = z", "fn f<Z>(z: Z) -> Z = z");
 }