test(#310): inject syntax error to validate copilot commit-approval flow
Some checks failed
Build and Push to ACR / Build and Push (push) Failing after 45s

This commit is contained in:
2026-05-07 19:43:38 +00:00
parent 4179b1d2d4
commit a2acaafbad

View File

@@ -41,7 +41,7 @@ public class ItemsController {
Item item = new Item(id, Item item = new Item(id,
body.getOrDefault("name", "unnamed"), body.getOrDefault("name", "unnamed"),
body.getOrDefault("description", "")); body.getOrDefault("description", ""));
store.put(id, item); store.put(id, item)
return item; return item;
} }
@@ -67,4 +67,4 @@ public class ItemsController {
store.remove(id); store.remove(id);
return Map.of("deleted", id); return Map.of("deleted", id);
} }
} }