Skip to content

Commit 7e043d3

Browse files
committed
fix: update version tests to match current version 1.2.1
The changeset was processed during rebase, bumping version from 1.2.0 to 1.2.1. Updated CLI integration tests to check for the correct version.
1 parent 3ff1b6a commit 7e043d3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/cli_integration.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ fn test_cli_version_flag() {
329329
assert!(output.status.success());
330330
let stdout = String::from_utf8(output.stdout).unwrap();
331331
assert!(stdout.contains("scripture-links"));
332-
assert!(stdout.contains("1.2.0")); // Current version
332+
assert!(stdout.contains("1.2.1")); // Current version
333333
}
334334

335335
#[test]
@@ -342,7 +342,7 @@ fn test_cli_version_short_flag() {
342342
assert!(output.status.success());
343343
let stdout = String::from_utf8(output.stdout).unwrap();
344344
assert!(stdout.contains("scripture-links"));
345-
assert!(stdout.contains("1.2.0")); // Current version
345+
assert!(stdout.contains("1.2.1")); // Current version
346346
}
347347

348348
#[test]

0 commit comments

Comments
 (0)