style(gateway): format portal method-order assertions

Rebase union-merge left the portal.list assertion wrapped; oxfmt fits it
on one line.
This commit is contained in:
Peter Steinberger
2026-08-12 20:15:02 -07:00
parent aaba4e2e45
commit c5a52f10bb
+1 -3
View File
@@ -309,9 +309,7 @@ describe("listGatewayMethods", () => {
expect(methods.indexOf("device.scopes.waitUpgrade")).toBe(
methods.indexOf("device.scopes.requestUpgrade") + 1,
);
expect(methods.indexOf("portal.list")).toBe(
methods.indexOf("device.scopes.waitUpgrade") + 1,
);
expect(methods.indexOf("portal.list")).toBe(methods.indexOf("device.scopes.waitUpgrade") + 1);
expect(methods.indexOf("portal.open")).toBe(methods.indexOf("portal.list") + 1);
expect(methods.indexOf("portal.close")).toBe(methods.indexOf("portal.open") + 1);
});