Skip to content

Commit acf12c1

Browse files
committed
Update test case wording
1 parent 8035781 commit acf12c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/auth/src/core/auth/auth_impl.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -863,15 +863,15 @@ describe('core/auth/auth_impl', () => {
863863
mockFetch.tearDown();
864864
});
865865

866-
it('password policy should be set for project if tenant ID is null', async () => {
866+
it('password policy should be cached for project if tenant ID is null', async () => {
867867
auth = await testAuth();
868868
auth.tenantId = null;
869869
await auth._updatePasswordPolicy();
870870

871871
expect(auth._getPasswordPolicy()).to.eql(cachedPasswordPolicy);
872872
});
873873

874-
it('password policy should be set for tenant if tenant ID is not null', async () => {
874+
it('password policy should be cached for tenant if tenant ID is not null', async () => {
875875
auth = await testAuth();
876876
auth.tenantId = TEST_TENANT_ID;
877877
await auth._updatePasswordPolicy();
@@ -899,7 +899,7 @@ describe('core/auth/auth_impl', () => {
899899
expect(auth._getPasswordPolicy()).to.be.undefined;
900900
});
901901

902-
it('password policy should still be set when the schema version is not supported', async () => {
902+
it('password policy should still be cached when the schema version is not supported', async () => {
903903
auth = await testAuth();
904904
auth.tenantId = TEST_TENANT_ID_UNSUPPORTED_POLICY_VERSION;
905905
await auth._updatePasswordPolicy();

0 commit comments

Comments
 (0)