Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit 11fdbe0

Browse files
Natfiiclaude
andcommitted
fix: update remaining v0.0.29 version references in tests
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4831040 commit 11fdbe0

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

app/src/androidTest/java/com/zeroclaw/android/screen/TerminalScreenTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class TerminalScreenTest {
4646
)
4747
}
4848
composeTestRule
49-
.onNodeWithText("ZeroClaw Terminal v0.0.29 \u2014 Type /help for commands")
49+
.onNodeWithText("ZeroClaw Terminal v0.0.30 \u2014 Type /help for commands")
5050
.assertIsDisplayed()
5151
}
5252

app/src/androidTest/java/com/zeroclaw/android/screen/helpers/FakeData.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ internal fun fakeTerminalState(): TerminalState =
272272
TerminalBlock.System(
273273
id = 1,
274274
timestamp = System.currentTimeMillis(),
275-
text = "ZeroClaw Terminal v0.0.29 \u2014 Type /help for commands",
275+
text = "ZeroClaw Terminal v0.0.30 \u2014 Type /help for commands",
276276
),
277277
),
278278
isLoading = false,

app/src/test/java/com/zeroclaw/android/ui/screen/terminal/TerminalViewModelTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ class TerminalViewModelTest {
109109
val entry =
110110
TerminalEntry(
111111
id = 6,
112-
content = "ZeroClaw Terminal v0.0.29",
112+
content = "ZeroClaw Terminal v0.0.30",
113113
entryType = "system",
114114
timestamp = 6000L,
115115
)
116116
val block = TerminalViewModel.toBlock(entry)
117117
assertTrue(block is TerminalBlock.System)
118-
assertEquals("ZeroClaw Terminal v0.0.29", (block as TerminalBlock.System).text)
118+
assertEquals("ZeroClaw Terminal v0.0.30", (block as TerminalBlock.System).text)
119119
}
120120

121121
@Test

zeroclaw-android/zeroclaw-ffi/src/repl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ mod tests {
402402
#[test]
403403
fn test_version_returns_string() {
404404
let result = eval_repl_inner("version()".into()).unwrap();
405-
assert_eq!(result, "0.0.29");
405+
assert_eq!(result, "0.0.30");
406406
}
407407

408408
#[test]

0 commit comments

Comments
 (0)