We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f05637 commit db17cbaCopy full SHA for db17cba
pkgs/unix_api/test/mmap_test.dart
@@ -82,7 +82,7 @@ void main() {
82
final address = mmap(nullptr, 0, PROT_READ, MAP_SHARED, -1, 0);
83
84
expect(address, MAP_FAILED);
85
- expect(errno, anyOf([EINVAL, EBADF]);
+ expect(errno, anyOf([EBADF, EINVAL]));
86
});
87
88
test('mprotect success', () {
0 commit comments