diff options
author | krishnaa96 <krishna.moorthy6@wipro.com> | 2021-02-19 14:22:38 +0530 |
---|---|---|
committer | krishna moorthy <krishna.moorthy6@wipro.com> | 2021-02-21 07:55:01 +0000 |
commit | 1d759d303cc260612ab38d311ca67c11508bf966 (patch) | |
tree | 3296a06d42bd29db0a8e2ce69a4416d6e5ecf91c /test/apps/pci_optimization | |
parent | d9a9520bd7efe2f022c0ad3de37b0c4ada4789df (diff) |
Convert cell_id in ML before optimization
Issue-ID: OPTFRA-871
Signed-off-by: krishnaa96 <krishna.moorthy6@wipro.com>
Change-Id: I659ed1acf6147b295df4c0cd8a892eb4dafbf837
Diffstat (limited to 'test/apps/pci_optimization')
-rw-r--r-- | test/apps/pci_optimization/test_ml_model.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/apps/pci_optimization/test_ml_model.py b/test/apps/pci_optimization/test_ml_model.py index 3a7f76c..cf0dee5 100644 --- a/test/apps/pci_optimization/test_ml_model.py +++ b/test/apps/pci_optimization/test_ml_model.py @@ -70,7 +70,7 @@ class TestMlModel(unittest.TestCase): self.Mock_req = self.patcher_req.start() mlmodel = MlModel() mlmodel.get_additional_inputs(dzn_data, network_cell_info) - self.assertEqual({'Chn0001'}, dzn_data['PCI_UNCHANGEABLE_CELLS']) + self.assertEqual({1}, dzn_data['PCI_UNCHANGEABLE_CELLS']) self.patcher_req.stop() dzn_data['PCI_UNCHANGEABLE_CELLS'] = [] |