Skip to content

Commit 9221e06

Browse files
Apply Java spotless formatting to SessionTodosChangedTest
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 9f3a8ee commit 9221e06

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

java/src/test/java/com/github/copilot/SessionTodosChangedTest.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ static void teardown() throws Exception {
4040

4141
@Test
4242
void firesSessionTodosChangedAndExposesRowsAndDependencies() throws Exception {
43-
ctx.configureForTest("session_todos_changed",
44-
"fires_session_todos_changed_and_exposes_rows_and_dependencies");
43+
ctx.configureForTest("session_todos_changed", "fires_session_todos_changed_and_exposes_rows_and_dependencies");
4544

4645
try (CopilotClient client = ctx.createClient()) {
4746
CopilotSession session = client
@@ -50,8 +49,8 @@ void firesSessionTodosChangedAndExposesRowsAndDependencies() throws Exception {
5049
List<SessionEvent> events = Collections.synchronizedList(new ArrayList<>());
5150
session.on(events::add);
5251

53-
session.sendAndWait(new MessageOptions().setPrompt(
54-
"Use the sql tool to execute exactly these statements, in order, with no extra rows:\n"
52+
session.sendAndWait(new MessageOptions()
53+
.setPrompt("Use the sql tool to execute exactly these statements, in order, with no extra rows:\n"
5554
+ "1. INSERT INTO todos (id, title, status) VALUES ('alpha', 'First todo', 'pending');\n"
5655
+ "2. INSERT INTO todos (id, title, status) VALUES ('beta', 'Second todo', 'done');\n"
5756
+ "3. INSERT INTO todo_deps (todo_id, depends_on) VALUES ('beta', 'alpha');\n"

0 commit comments

Comments
 (0)