def test_date_field_time_on_save(helpers):
        theRecord = pytest.app.records.create(
            **{"Required Date & Time": pendulum.now()})
        with pytest.raises(exceptions.ValidationError) as excinfo:
            theRecord["Date"] = pendulum.now().time()