Skip to content

Commit

Permalink
Use the actual API in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rekire committed Apr 9, 2024
1 parent 32fd132 commit 7bfffb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autologin_windows/test/autologin_windows_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ void main() {
);

test('requestCredentials returns expected value', () async {
await autologin.saveCredentials(SharedTests.expectedCredentials);
final result = await autologin.requestCredentials();
// this ffi call is expected to fail in this test
expect(result, equals(null));
expect(result, equals(SharedTests.expectedCredentials));
});

test('saveLoginToken returns true', () async {
Expand Down

0 comments on commit 7bfffb7

Please sign in to comment.