From eadcacc19d187c6de9fab9efcc45d28df7cfd133 Mon Sep 17 00:00:00 2001 From: Mark <399551+mwiebe@users.noreply.github.com> Date: Mon, 2 Feb 2026 18:43:19 +0000 Subject: [PATCH] chore: Fix up comments and test code from PR feedback Signed-off-by: Mark <399551+mwiebe@users.noreply.github.com> --- src/openjd/model/v2023_09/_model.py | 4 +++- test/openjd/model/test_parse.py | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/openjd/model/v2023_09/_model.py b/src/openjd/model/v2023_09/_model.py index 8204f8d9..53fe0f12 100644 --- a/src/openjd/model/v2023_09/_model.py +++ b/src/openjd/model/v2023_09/_model.py @@ -473,7 +473,9 @@ class EmbeddedFileText(OpenJDModel_v2023_09): will have its execute-permissions set. Default: False data (FormatString): The text data to write to the file. - endOfLine (Optional[EndOfLine]): Line ending style. Requires FEATURE_BUNDLE_1 extension. + endOfLine (Optional[EndOfLine]): The line endings that the embedded file will have when + written to disk. If AUTO the embedded file will have the default line endings of the + host operating system. Requires FEATURE_BUNDLE_1 extension. Default: AUTO """ diff --git a/test/openjd/model/test_parse.py b/test/openjd/model/test_parse.py index a7ea7454..80437a42 100644 --- a/test/openjd/model/test_parse.py +++ b/test/openjd/model/test_parse.py @@ -194,7 +194,6 @@ class MockExtensionName(str, Enum): """A mock enum with only SUPPORTED_NAME for testing.""" SUPPORTED_NAME = "SUPPORTED_NAME" - FEATURE_BUNDLE_1 = "FEATURE_BUNDLE_1" class MockExtensionNameWithTwoNames(str, Enum): @@ -202,7 +201,6 @@ class MockExtensionNameWithTwoNames(str, Enum): SUPPORTED_NAME = "SUPPORTED_NAME" ANOTHER_SUPPORTED_NAME = "ANOTHER_SUPPORTED_NAME" - FEATURE_BUNDLE_1 = "FEATURE_BUNDLE_1" @pytest.mark.parametrize(