Skip to content

Commit 26c8ba8

Browse files
authored
DLPX-83062 Update engine version to 1.11.16 in develop branch (#454)
1 parent 39fce0b commit 26c8ba8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tools/src/main/python/dlpx/virtualization/_internal/settings.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# versions in those packages until they are shipped out of band.
2121
#
2222
[General]
23-
engine_api_version = 1.12.0
23+
engine_api_version = 1.11.16
2424
distribution_name = dvp-tools
2525
package_author = Delphix
2626
namespace_package = dlpx

tools/src/test/python/dlpx/virtualization/_internal/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ def artifact_content(engine_api, virtual_source_definition,
710710

711711
@pytest.fixture
712712
def engine_api():
713-
return {'type': 'APIVersion', 'major': 1, 'minor': 12, 'micro': 0}
713+
return {'type': 'APIVersion', 'major': 1, 'minor': 11, 'micro': 16}
714714

715715

716716
@pytest.fixture

tools/src/test/python/dlpx/virtualization/_internal/test_package_util.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def test_get_virtualization_api_version():
1818

1919
@staticmethod
2020
def test_get_engine_api_version():
21-
assert package_util.get_engine_api_version_from_settings() == '1.12.0'
21+
assert package_util.get_engine_api_version_from_settings() == '1.11.16'
2222

2323
@staticmethod
2424
def test_get_build_api_version_json():
@@ -35,8 +35,8 @@ def test_get_engine_api_version_json():
3535
engine_api_version = {
3636
'type': 'APIVersion',
3737
'major': 1,
38-
'minor': 12,
39-
'micro': 0
38+
'minor': 11,
39+
'micro': 16
4040
}
4141
assert package_util.get_engine_api_version() == engine_api_version
4242

0 commit comments

Comments
 (0)