diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-25 15:40:59 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-25 15:40:59 -0400 |
| commit | 1f9147187d66e95a0ffedd4d5595ec98646b5fe1 (patch) | |
| tree | 14281e5cbde8e15fae63953b72844fb1a11d6f73 /test/enums.tm | |
| parent | d88d8648dc7802fbeac2f28dc5f2ef8fdfe1a9e4 (diff) | |
Make docstring tests use an actual expression AST instead of text
matching
Diffstat (limited to 'test/enums.tm')
| -rw-r--r-- | test/enums.tm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/enums.tm b/test/enums.tm index a5ed64ba..58bc412c 100644 --- a/test/enums.tm +++ b/test/enums.tm @@ -17,11 +17,11 @@ func choose_text(f:Foo->Text): func main(): >> Foo.Zero - = Zero + = Foo.Zero >> Foo.One(123) - = One(123) + = Foo.One(123) >> Foo.Two(123, 456) - = Two(x=123, y=456) + = Foo.Two(x=123, y=456) >> one := Foo.One(123) >> one.One |
