Skip to content

Commit

Permalink
#414: fix small typos
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-kuprianov committed Aug 6, 2020
1 parent cb478f2 commit d65a72e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tendermint/tests/lite-model-based.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,12 @@ fn run_apalache_test(dir: &str, test: ApalacheTestCase) -> io::Result<CommandRun
#[test]
fn apalache_test() {
let test = ApalacheTestCase {
model: "MC4_10_correct.tla".to_string(),
model: "MC4_4_faulty.tla".to_string(),
test: "TestFailureInv".to_string(),
length: None,
timeout: None
};
match run_apalache_test("./tests/support/lite-model-based", test) {
match run_apalache_test("tests/support/lite-model-based", test) {
Ok(run) => {
eprintln!("Stdout: {}", run.stdout);
eprintln!("Stderr: {}", run.stderr)
Expand Down
2 changes: 1 addition & 1 deletion tendermint/tests/support/lite-model-based/MC4_4_faulty.tla
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
------------------------- MODULE MC4_10_correct ---------------------------
------------------------- MODULE MC4_4_faulty ---------------------------

AllNodes == {"n1", "n2", "n3", "n4"}
TRUSTED_HEIGHT == 1
Expand Down

0 comments on commit d65a72e

Please sign in to comment.