Skip to content

Commit

Permalink
test: fix failing functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
srieteja committed Sep 9, 2023
1 parent 4137f5e commit 55e99bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/at_functional_test/test/enroll_verb_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void main() {
var approveEnrollResponse = await read();
approveEnrollResponse = approveEnrollResponse.replaceFirst('error:', '');
expect(approveEnrollResponse,
'AT0028:enrollment_id: $dummyEnrollmentId is expired or invalid');
'AT0028:enrollment_id: $dummyEnrollmentId is expired or invalid\n');
});

test(
Expand All @@ -140,7 +140,7 @@ void main() {
var denyEnrollResponse = await read();
denyEnrollResponse = denyEnrollResponse.replaceFirst('error:', '');
expect(denyEnrollResponse,
'AT0028:enrollment_id: $dummyEnrollmentId is expired or invalid');
'AT0028:enrollment_id: $dummyEnrollmentId is expired or invalid\n');
});

test('enroll request on unauthenticated connection without otp', () async {
Expand Down

0 comments on commit 55e99bb

Please sign in to comment.