uranusjr commented on code in PR #51419: URL: https://github.com/apache/airflow/pull/51419#discussion_r2141878407
########## airflow-core/tests/unit/serialization/serializers/test_serializers.py: ########## @@ -166,12 +187,60 @@ def test_encode_k8s_v1pod(self): "spec": {"containers": [{"image": "bar", "name": "foo"}]}, } + def test_bignum(self): + from airflow.serialization.serializers.bignum import serialize + + assert serialize(12345) == ("", "", 0, False) + + @pytest.mark.parametrize( + ("klass", "version", "payload", "msg"), + [ + ( + qualname(Decimal), Review Comment: We should use a fixed value here (and below) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org