mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +00:00
fix(Google Sheets Node): Incorrect read of 0 and false (#6525)
This commit is contained in:
committed by
कारतोफ्फेलस्क्रिप्ट™
parent
d3d8522e8f
commit
b6202b5585
@@ -163,7 +163,7 @@ describe('Test Google Sheets, removeEmptyColumns', () => {
|
||||
expect(result).toBeDefined();
|
||||
expect(result).toEqual([
|
||||
['id', 'col1', 'col3'],
|
||||
['', 'A', 'C'], // TODO:should be [0, 'A', 'C'] ?
|
||||
[0, 'A', 'C'],
|
||||
[1, 'a', 'c'],
|
||||
[2, 'd', 'f'],
|
||||
[3, 'g', 'i'],
|
||||
|
||||
Reference in New Issue
Block a user