diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/test/aedifex/command/version.lux | 4 | ||||
-rw-r--r-- | stdlib/source/test/aedifex/repository.lux | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/aedifex/command/version.lux b/stdlib/source/test/aedifex/command/version.lux index 4873cf31e..983262270 100644 --- a/stdlib/source/test/aedifex/command/version.lux +++ b/stdlib/source/test/aedifex/command/version.lux @@ -7,7 +7,7 @@ [control ["[0]" maybe] ["[0]" try] - ["[0]" exception (.only exception:)] + ["[0]" exception (.only exception)] [concurrency ["[0]" async (.only Async)]]] [data @@ -27,7 +27,7 @@ [\\program ["[0]" /]]) -(exception: .public console_is_closed!) +(exception .public console_is_closed!) (def mock (Mock [Bit Text]) diff --git a/stdlib/source/test/aedifex/repository.lux b/stdlib/source/test/aedifex/repository.lux index 1602fab49..a3caba277 100644 --- a/stdlib/source/test/aedifex/repository.lux +++ b/stdlib/source/test/aedifex/repository.lux @@ -9,7 +9,7 @@ [control ["[0]" io] ["[0]" try] - ["[0]" exception (.only exception:)]] + ["[0]" exception (.only exception)]] [data ["[0]" product] ["[0]" binary (.only Binary)] @@ -42,11 +42,11 @@ (-> Version Artifact) (|>> ["com.github.luxlang" "test-artifact"])) -(exception: (not_found [uri URI]) +(exception (not_found [uri URI]) (exception.report "URI" (%.text uri))) -(exception: (cannot_upload [uri URI]) +(exception (cannot_upload [uri URI]) (exception.report "URI" (%.text uri))) |