Skip to content

Commit ee7ac8e

Browse files
make base internal (_base)
1 parent 73b4a2d commit ee7ac8e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

metameq/config/standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ host_body_site_skin_of_hand: &host_body_site_skin_of_hand
119119
function: "transform_format_field_as_int"
120120
overwrite_non_nans: true
121121
host_type_specific_metadata:
122-
base:
122+
_base:
123123
metadata_fields:
124124
sample_name:
125125
empty: false

metameq/tests/test_metadata_configurator/test_build_full_flat_config_dict.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ def test_build_full_flat_config_dict_no_inputs(self):
3636
hosts_dict = result[HOST_TYPE_SPECIFIC_METADATA_KEY]
3737
self.assertIsInstance(hosts_dict, dict)
3838

39-
# Should have "base" host type with sample_name metadata field
40-
self.assertIn("base", hosts_dict)
41-
base_host = hosts_dict["base"]
39+
# Should have "_base" host type with sample_name metadata field
40+
self.assertIn("_base", hosts_dict)
41+
base_host = hosts_dict["_base"]
4242
self.assertIn(METADATA_FIELDS_KEY, base_host)
4343
self.assertIn("sample_name", base_host[METADATA_FIELDS_KEY])
4444

0 commit comments

Comments
 (0)