Skip to content

Commit cbdaaa9

Browse files
committed
Fixed accidental use of empty-values.csv in bom test
1 parent 7a7c387 commit cbdaaa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/modules/CSVFileModule.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('CSVFileModule', () => {
1515

1616
test('Reads data from CSV with a Byte Order Mark', async () => {
1717
const csvFileModuleWithBOMs = new CSVFileModule(
18-
path.join(__dirname, './fixtures/example-csv-empty-values.csv'),
18+
path.join(__dirname, './fixtures/example-csv-bom.csv'),
1919
);
2020

2121
const data = await csvFileModuleWithBOMs.get('mrn', 'example-mrn-1');

0 commit comments

Comments
 (0)