From 3befdeb1672abcbb2122247899029acea0da56b1 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 4 Jun 2025 14:02:42 +0100 Subject: [PATCH] Update mas.ts --- .../element-web-playwright-common/src/testcontainers/mas.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/element-web-playwright-common/src/testcontainers/mas.ts b/packages/element-web-playwright-common/src/testcontainers/mas.ts index 935451cc70..aa68c4f1ed 100644 --- a/packages/element-web-playwright-common/src/testcontainers/mas.ts +++ b/packages/element-web-playwright-common/src/testcontainers/mas.ts @@ -195,8 +195,8 @@ export class MatrixAuthenticationServiceContainer extends GenericContainer { private readonly args = ["-c", "/config/config.yaml"]; public constructor(db: StartedPostgreSqlContainer) { - // We rely on https://github.com/element-hq/matrix-authentication-service/pull/4529 which isn't in a release yet - super("ghcr.io/element-hq/matrix-authentication-service:sha-98f2776"); + // We rely on https://github.com/element-hq/matrix-authentication-service/pull/4563 which isn't in a release yet + super("ghcr.io/element-hq/matrix-authentication-service:sha-3207d23"); this.config = deepCopy(DEFAULT_CONFIG); this.config.database.username = db.getUsername();