diff --git a/tests/integration/test_chunked_logging.py b/tests/integration/test_chunked_logging.py index 9209bfa29..b191b2be0 100644 --- a/tests/integration/test_chunked_logging.py +++ b/tests/integration/test_chunked_logging.py @@ -28,4 +28,7 @@ def test_chunked_logging(): assert message == graylog_response["message"] assert "long_message" not in graylog_response assert "timestamp" in graylog_response + assert "facility" in graylog_response + assert "host" in graylog_response + assert "1.0" == graylog_response["version"] assert SYSLOG_LEVELS[logging.ERROR] == graylog_response["level"] diff --git a/tests/integration/test_common_logging.py b/tests/integration/test_common_logging.py index 8da9e5c5b..c210adca8 100644 --- a/tests/integration/test_common_logging.py +++ b/tests/integration/test_common_logging.py @@ -24,4 +24,7 @@ def test_common_logging(logger): assert message == graylog_response["message"] assert "long_message" not in graylog_response assert "timestamp" in graylog_response + assert "facility" in graylog_response + assert "host" in graylog_response + assert "1.0" == graylog_response["version"] assert SYSLOG_LEVELS[logging.ERROR] == graylog_response["level"]