File tree Expand file tree Collapse file tree
src/openjd/model/v2023_09 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -473,7 +473,9 @@ class EmbeddedFileText(OpenJDModel_v2023_09):
473473 will have its execute-permissions set.
474474 Default: False
475475 data (FormatString): The text data to write to the file.
476- endOfLine (Optional[EndOfLine]): Line ending style. Requires FEATURE_BUNDLE_1 extension.
476+ endOfLine (Optional[EndOfLine]): The line endings that the embedded file will have when
477+ written to disk. If AUTO the embedded file will have the default line endings of the
478+ host operating system. Requires FEATURE_BUNDLE_1 extension.
477479 Default: AUTO
478480 """
479481
Original file line number Diff line number Diff line change @@ -194,15 +194,13 @@ class MockExtensionName(str, Enum):
194194 """A mock enum with only SUPPORTED_NAME for testing."""
195195
196196 SUPPORTED_NAME = "SUPPORTED_NAME"
197- FEATURE_BUNDLE_1 = "FEATURE_BUNDLE_1"
198197
199198
200199class MockExtensionNameWithTwoNames (str , Enum ):
201200 """A mock enum with only SUPPORTED_NAME for testing."""
202201
203202 SUPPORTED_NAME = "SUPPORTED_NAME"
204203 ANOTHER_SUPPORTED_NAME = "ANOTHER_SUPPORTED_NAME"
205- FEATURE_BUNDLE_1 = "FEATURE_BUNDLE_1"
206204
207205
208206@pytest .mark .parametrize (
You can’t perform that action at this time.
0 commit comments