Build: #3 failed

Job: Pipeline PR Test 6.7.4 failed

Stages & jobs

  1. Default Stage

select tsys field[partial-name]: Test case result

The below summarizes the result of the test " select tsys field[partial-name]" in build 3 of PIPESPECS - Pipeline Pull Request Test - PIPE-3163-source-pointings-plots-missing-for-multi-target-datasets - Pipeline PR Test 6.7.4.
Description
select tsys field[partial-name]
Test class
pipeline.infrastructure.displays.plotpointings_test
Method
test_select_tsys_field[partial-name]
Duration
< 1 sec
Status
Failed (New Failure)

Error Log

AssertionError: assert [Field(1, '24013+0488_OFF_0', 1, numpy.array([232.40403979701932]), {})] == Field(1, '24013+0488_OFF_0', 1, numpy.array([232.40403979701932]), {})
 +  where [Field(1, '24013+0488_OFF_0', 1, numpy.array([232.40403979701932]), {})] = select_tsys_fields(<pipeline.domain.measurementset.MeasurementSet object at 0x7f7c2bbee480>, Source(1, '24013+0488', {}, {}))
case = (<pipeline.domain.measurementset.MeasurementSet object at 0x7f7c2bbee480>, Source(1, '24013+0488', {}, {}), Field(1, '24013+0488_OFF_0', 1, numpy.array([232.40403979701932]), {}))

    def test_select_tsys_field(case: tuple[MeasurementSet, Source, Field | None]) -> None:
        """Test select_tsys_field for correct selections."""
        ms, source, expected = case
        if expected is None:
            with pytest.raises(LookupError):
                select_tsys_fields(ms, source)
        else:
>           assert select_tsys_fields(ms, source) == expected
E           AssertionError: assert [Field(1, '24013+0488_OFF_0', 1, numpy.array([232.40403979701932]), {})] == Field(1, '24013+0488_OFF_0', 1, numpy.array([232.40403979701932]), {})
E            +  where [Field(1, '24013+0488_OFF_0', 1, numpy.array([232.40403979701932]), {})] = select_tsys_fields(<pipeline.domain.measurementset.MeasurementSet object at 0x7f7c2bbee480>, Source(1, '24013+0488', {}, {}))

infrastructure/displays/plotpointings_test.py:119: AssertionError