Skip to content

Commit

Permalink
Merge branch 'main' into 2858/sanitize-when-pretty-printing
Browse files Browse the repository at this point in the history
  • Loading branch information
apalache-bot authored Mar 14, 2024
2 parents 23649a2 + 456a572 commit bbac951
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ object TestCmdExecutorService extends DefaultRunnableSpec {
val expectedPayload =
"""|----------------------------------- MODULE M -----------------------------------
|
|EXTENDS Integers, Sequences, FiniteSets, TLC, Apalache
|EXTENDS Integers, Sequences, FiniteSets, TLC, Apalache, Variants
|
|Foo == TRUE
|
Expand Down
6 changes: 3 additions & 3 deletions test/tla/cli-integration-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ EXITCODE: OK
$ cat output.tla | head
-------------------------------- MODULE output --------------------------------

EXTENDS Integers, Sequences, FiniteSets, TLC, Apalache
EXTENDS Integers, Sequences, FiniteSets, TLC, Apalache, Variants

CONSTANT
(*
Expand Down Expand Up @@ -414,7 +414,7 @@ EXITCODE: OK
$ cat output.tla | head
-------------------------------- MODULE output --------------------------------
EXTENDS Integers, Sequences, FiniteSets, TLC, Apalache
EXTENDS Integers, Sequences, FiniteSets, TLC, Apalache, Variants
CONSTANT
(*
Expand Down Expand Up @@ -3920,7 +3920,7 @@ EXITCODE: OK
$ cat module-lookup/subdir-no-dummy/output.tla
-------------------------------- MODULE output --------------------------------
EXTENDS Integers, Sequences, FiniteSets, TLC, Apalache
EXTENDS Integers, Sequences, FiniteSets, TLC, Apalache, Variants
Init == TRUE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ object TlaWriter {
/**
* The names of all standard modules that are supported by Apalache IR.
*/
val STANDARD_MODULES = List("Integers", "Sequences", "FiniteSets", "TLC", "Apalache")
val STANDARD_MODULES = List("Integers", "Sequences", "FiniteSets", "TLC", "Apalache", "Variants")

}

0 comments on commit bbac951

Please sign in to comment.