Skip to content

Commit d6d3199

Browse files
chrisbobbegnprice
authored andcommitted
test: Use right-shaped API keys for selfAccount and otherAccount
1 parent e4cf955 commit d6d3199

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
@@ -123,14 +123,14 @@ final User selfUser = user(fullName: 'Self User', email: 'self@example');
123123
final Account selfAccount = account(
124124
id: 1001,
125125
user: selfUser,
126-
apiKey: 'asdfqwer',
126+
apiKey: 'dQcEJWTq3LczosDkJnRTwf31zniGvMrO', // A Zulip API key is 32 digits of base64.
127127
);
128128

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

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

0 commit comments

Comments
 (0)