We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ac00ca commit 8351a1cCopy full SHA for 8351a1c
tests/unit/test_external_config.py
@@ -935,6 +935,11 @@ def test_source_column_match_valid_input(self):
935
result = ec.source_column_match
936
self.assertEqual(expected, result)
937
938
+ ec.source_column_match = "POSITION"
939
+ expected = "POSITION"
940
+ result = ec.source_column_match
941
+ self.assertEqual(expected, result)
942
+
943
def test_source_column_match_invalid_input(self):
944
ec = external_config.CSVOptions()
945
with self.assertRaisesRegex(
0 commit comments