Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 0cdc44a

Browse files
committed
Appease the linter
1 parent 5b22d15 commit 0cdc44a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/matrix-to-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
makeGroupPermalink,
1919
makeRoomPermalink,
2020
makeUserPermalink,
21-
pickServerCandidates
21+
pickServerCandidates,
2222
} from "../src/matrix-to";
2323
import * as testUtils from "./test-utils";
2424

@@ -293,7 +293,7 @@ describe('matrix-to', function() {
293293
});
294294

295295
// Technically disallowed but we'll test it anyways
296-
it('should generate an event permalink for room aliases without candidate servers even when some are available', function() {
296+
it('should generate an event permalink for room aliases without candidate servers', function() {
297297
peg.get().getRoom = () => {
298298
return {
299299
getJoinedMembers: () => [
@@ -318,7 +318,7 @@ describe('matrix-to', function() {
318318
expect(result).toBe("https://matrix.to/#/#somewhere:example.org");
319319
});
320320

321-
it('should generate a room permalink for room aliases without candidate servers even when some are available', function() {
321+
it('should generate a room permalink for room aliases without candidate servers', function() {
322322
peg.get().getRoom = () => {
323323
return {
324324
getJoinedMembers: () => [

0 commit comments

Comments
 (0)