Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
fixup test numerically-parseable sha string
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Innes committed Mar 4, 2019
1 parent 1a05bab commit 5c02862
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/src/__tests__/utils.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -742,10 +742,10 @@ it('joins a 2-d array into a correctly escaped CSV string', () => {
],
[
'foo',
'bar',
'13e65088',
],
];
const expectedStringArrayMatch = '"hello","world"\n"foo","bar"\n';
const expectedStringArrayMatch = '"hello","world"\n"foo","13e65088"\n';
expect(joinDataIntoCSVString(stringArray)).toBe(expectedStringArrayMatch);

const mixedArray = [
Expand Down

0 comments on commit 5c02862

Please sign in to comment.