···155155 expect(result[eventUri].rsvps["going"]).toHaveLength(1);
156156 });
157157158158- it("groups into '_other' when groupBy value is null", async () => {
158158+ it("groups into 'other' when groupBy value is null", async () => {
159159 const eventUri = "at://did:plc:test/community.lexicon.calendar.event/evt1";
160160161161 await applyEvents(db, [makeEvent({ uri: eventUri, rkey: "evt1", time_us: 1000 })]);
162162163163- // Insert RSVP without a status field — groupBy "status" should fall back to "_other"
163163+ // Insert RSVP without a status field — groupBy "status" should fall back to "other"
164164 await applyEvents(db, [
165165 makeEvent({
166166 uri: "at://did:plc:user1/community.lexicon.calendar.rsvp/r1",
···181181 const result = await resolveHydrates(db, relations, { rsvps: 10 }, [eventRow!]);
182182183183 expect(result[eventUri].rsvps).toBeDefined();
184184- expect(result[eventUri].rsvps["_other"]).toHaveLength(1);
184184+ expect(result[eventUri].rsvps["other"]).toHaveLength(1);
185185 });
186186});