Skip to content

Commit

Permalink
Fix test - make isValid false for url
Browse files Browse the repository at this point in the history
  • Loading branch information
akre54 committed Jul 10, 2024
1 parent ff892b3 commit 71d64f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/node/reducers/map-style-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ test('#mapStyleReducer -> EDIT_CUSTOM_MAP_STYLE', t => {

t.deepEqual(
nextState.inputStyle,
{...inputMapStyleToEdit, error: false, isValid: true, style: null, uploadedFile: null},
{...inputMapStyleToEdit, error: false, isValid: false, style: null, uploadedFile: null},
'should set the inputStyle'
);

Expand Down

0 comments on commit 71d64f6

Please sign in to comment.