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(