Bug 2122 fixed: used cluster_id instead of cluster_uuid in repo_add.reverse_sync
[osm/N2VC.git] / n2vc / tests / unit / test_k8s_helm_conn.py
index 5e36938..8a0c1ea 100644 (file)
@@ -69,7 +69,7 @@ class TestK8sHelmConn(asynctest.TestCase):
 
         self.helm_conn.fs.sync.assert_called_once_with(from_path=self.cluster_id)
         self.helm_conn.fs.reverse_sync.assert_called_once_with(
-            from_path=self.cluster_uuid
+            from_path=self.cluster_id
         )
         self.assertEqual(
             self.helm_conn._local_async_exec.call_count,