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 f7ac6f8 commit 57c839bCopy full SHA for 57c839b
utils/__tests__/bids_files.spec.js
@@ -16,7 +16,7 @@ describe('bids_files', () => {
16
},
17
}
18
const match = checkSidecarForDatafiles(file, fileList)
19
- assert(match == true)
+ assert.isTrue(match)
20
})
21
22
it('does not match invalid datafile formats', () => {
@@ -32,7 +32,7 @@ describe('bids_files', () => {
32
33
34
35
- assert(match == false)
+ assert.isFalse(match)
36
37
38
0 commit comments