mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-29 13:41:08 +01:00
Fix lint warning
This commit is contained in:
parent
f153a72592
commit
4de0f98fa4
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ public class OperatingSystemControlTest extends TerminalTestCase {
|
||||||
withTerminalSized(10, 10);
|
withTerminalSized(10, 10);
|
||||||
enterString("\033]0;Hello, world\007");
|
enterString("\033]0;Hello, world\007");
|
||||||
assertEquals("Hello, world", mTerminal.getTitle());
|
assertEquals("Hello, world", mTerminal.getTitle());
|
||||||
expectedTitleChanges.add(new ChangedTitle((String) null, "Hello, world"));
|
expectedTitleChanges.add(new ChangedTitle(null, "Hello, world"));
|
||||||
assertEquals(expectedTitleChanges, mOutput.titleChanges);
|
assertEquals(expectedTitleChanges, mOutput.titleChanges);
|
||||||
|
|
||||||
enterString("\033]0;Goodbye, world\007");
|
enterString("\033]0;Goodbye, world\007");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue