Skip to content

Commit 1de3f11

Browse files
committed
test: Use right-shaped API keys for selfAccount and otherAccount
1 parent 2da6cdd commit 1de3f11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/example_data.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,14 @@ final User selfUser = user(fullName: 'Self User', email: 'self@example');
122122
final Account selfAccount = account(
123123
id: 1001,
124124
user: selfUser,
125-
apiKey: 'asdfqwer',
125+
apiKey: 'dQcEJWTq3LczosDkJnRTwf31zniGvMrO', // A Zulip API key is 32 digits of base64.
126126
);
127127

128128
final User otherUser = user(fullName: 'Other User', email: 'other@example');
129129
final Account otherAccount = account(
130130
id: 1002,
131131
user: otherUser,
132-
apiKey: 'sdfgwert',
132+
apiKey: '6dxT4b73BYpCTU+i4BB9LAKC5h/CufqY', // A Zulip API key is 32 digits of base64.
133133
);
134134

135135
final User thirdUser = user(fullName: 'Third User', email: 'third@example');

0 commit comments

Comments
 (0)