Skip to content

Commit f083306

Browse files
committed
Fix more potentially incorrect test outputs
1 parent 69d7167 commit f083306

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/fields.test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -185,19 +185,19 @@ describe('formatMultivaluedValue', () => {
185185
test('formats values with correct delimiter and space', () => {
186186
const input = ['one two', 'three', 'four'];
187187
const formatted = formatMultivaluedValue(input);
188-
expect(formatted).toEqual('one two; three; four');
188+
expect(formatted).toEqual('one two;three;four');
189189
});
190190

191191
test('handles non-string values', () => {
192192
const input = ['one two', 3, 'four'];
193193
const formatted = formatMultivaluedValue(input);
194-
expect(formatted).toEqual('one two; 3; four');
194+
expect(formatted).toEqual('one two;3;four');
195195
});
196196

197197
test('discards empty entries', () => {
198198
const input = ['one two', '', 'three', null, 'four'];
199199
const formatted = formatMultivaluedValue(input);
200-
expect(formatted).toEqual('one two; three; four');
200+
expect(formatted).toEqual('one two;three;four');
201201
});
202202

203203
test('returns empty string for null or empty input', () => {

0 commit comments

Comments
 (0)