Skip to content

Commit 485ef9f

Browse files
committed
fix test shim
1 parent b32a1be commit 485ef9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/AdkTest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from adk import ADK
2-
2+
from adk.modeldata import ModelData
33

44
class ADKTest(ADK):
55
def __init__(self, apply_func, load_func=None, client=None, manifest_path="model_manifest.json.freeze"):
66
super(ADKTest, self).__init__(apply_func, load_func, client)
7-
self.model_data = self.init_manifest(manifest_path)
7+
self.model_data = ModelData(self.client, manifest_path)

0 commit comments

Comments
 (0)