diff --git a/bulk_fields_test.go b/bulk_fields_test.go index 9861466..5d8277f 100644 --- a/bulk_fields_test.go +++ b/bulk_fields_test.go @@ -33,6 +33,12 @@ func TestBulkEditFieldsAreWritable(t *testing.T) { id := m[1] // Handled before the column map: freq takes a numeric path (freq_hz + // band together) and the extras live in extras_json. + // The integer My-station fields take their own numeric path + // (BulkSetIntField + bulkEditableIntCols in the repo), added after this + // guard was written — which is exactly the drift it exists to catch. + if id == "my_dxcc" || id == "my_cq_zone" || id == "my_itu_zone" { + continue + } if id == "freq" || qso.IsBulkEditableExtra(id) { continue }