diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-08-11 11:03:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-11 11:03:15 +0300 |
commit | 43294da10313198c4f71f46eb39c4276551ad118 (patch) | |
tree | b35c2ec7912133411f0b7e49c58af58bee7d9848 /src/tests/test_initial_setup.py | |
parent | 4659f25804bd1b534767c134247c24699aaca722 (diff) | |
parent | d64d3b179ce487aa6b442c397c4bb3bb1f572155 (diff) | |
download | vyos-1x-43294da10313198c4f71f46eb39c4276551ad118.tar.gz vyos-1x-43294da10313198c4f71f46eb39c4276551ad118.zip |
Merge pull request #2147 from jestabro/remaining-defaults
T5434: remove reamining calls to incorrect defaults
Diffstat (limited to 'src/tests/test_initial_setup.py')
-rw-r--r-- | src/tests/test_initial_setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tests/test_initial_setup.py b/src/tests/test_initial_setup.py index cb843ff09..ba50d06cc 100644 --- a/src/tests/test_initial_setup.py +++ b/src/tests/test_initial_setup.py @@ -21,14 +21,16 @@ import vyos.configtree import vyos.initialsetup as vis from unittest import TestCase -from vyos import xml +from vyos.xml_ref import definition +from vyos.xml_ref.pkg_cache.vyos_1x_cache import reference class TestInitialSetup(TestCase): def setUp(self): with open('tests/data/config.boot.default', 'r') as f: config_string = f.read() self.config = vyos.configtree.ConfigTree(config_string) - self.xml = xml.load_configuration() + self.xml = definition.Xml() + self.xml.define(reference) def test_set_user_password(self): vis.set_user_password(self.config, 'vyos', 'vyosvyos') |