Skip to content

Commit

Permalink
test: fix functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
srieteja committed Jan 11, 2024
1 parent d751c84 commit 68b5662
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/at_functional_test/test/enrollment_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ void main() {
Map<String, dynamic> enrollmentRequests =
await client.fetchEnrollmentRequests();
print(enrollmentRequests.entries);
expect(enrollmentRequests.length, 2);
expect(enrollmentRequests.length, 4); // 4 entries - 2 entries from this test
// + 2 entries from the other test in this file.

String firstEnrollmentKey = getEnrollmentKey(
enrollResponse1JsonDecoded['enrollmentId'], atSign);
Expand Down

0 comments on commit 68b5662

Please sign in to comment.