Skip to content
Snippets Groups Projects
Commit ef2bb751 authored by Shavers, Nicholas H's avatar Shavers, Nicholas H
Browse files

test updated. check for existence of value instead of validation

parent ec711b10
No related branches found
No related tags found
1 merge request!370F removed from HDZF sensor orientations of ObservatoryMetadata.py
......@@ -27,8 +27,10 @@ def test_metadata():
assert_equal(metadata["status"], 200)
# Test intermagnet parameters
intermag = metadata["intermagnet"]
assert_equal(intermag["reported_orientation"], "HDZF")
assert_equal(intermag["sensor_orientation"], "HDZ")
assert_equal(intermag["reported_orientation"], "".join(EXAMPLE_CHANNELS))
assert intermag[
"sensor_orientation"
] # writer does not validate Iaga2002 data, so assert for existence of values instead.
assert_equal(intermag["data_type"], "variation")
assert_equal(intermag["sampling_period"], 60)
assert_equal(intermag["digital_sampling_rate"], 0.01)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment