Skip to content

Commit

Permalink
Fix archive path
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Jul 25, 2023
1 parent b64a522 commit a7a85b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
with:
name: e2e-traces
path: |
.e2e-traces
matrix-appservice-irc/.e2e-traces
integration-test-pool:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions spec/e2e/powerlevels.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ describe('Ensure powerlevels are appropriately applied', () => {
const plEvent = alice.waitForPowerLevel(
cRoomId, {
users: {
[bobUserId]: operatorPL,
[charlieUserId]: operatorPL,
[testEnv.ircBridge.appServiceUserId]: 100,
[bobUserId]: operatorPL,
},
}
},
);

await bob.send('MODE', channel, '+o', charlie.nick);
Expand Down
1 change: 0 additions & 1 deletion spec/util/e2e-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export class E2ETestMatrixClient extends MatrixClient {
const sortOrder = value !== null && typeof value === "object" ? Object.keys(value).sort() : undefined;
const jsonLeft = JSON.stringify(evValue, sortOrder);
const jsonRight = JSON.stringify(value, sortOrder);
console.log(jsonLeft, "---", jsonRight);
if (jsonLeft !== jsonRight) {
return undefined;
}
Expand Down

0 comments on commit a7a85b6

Please sign in to comment.