File tree 1 file changed +2
-2
lines changed
core/core-util/src/test/java/ai/wanaku/core/util
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public void testLoadResourcesIndex() throws Exception {
61
61
List <ResourceReference > loadedResourceReferences = IndexHelper .loadResourcesIndex (indexFile );
62
62
63
63
// Verify that the loaded resources match the original ones
64
- assertEquals (loadedResourceReferences .size (), loadedResourceReferences .size ());
64
+ assertEquals (RESOURCE_REFERENCES .size (), loadedResourceReferences .size ());
65
65
for (int i = 0 ; i < loadedResourceReferences .size (); i ++) {
66
66
ResourceReference expected = RESOURCE_REFERENCES .get (i );
67
67
ResourceReference actual = loadedResourceReferences .get (i );
@@ -107,7 +107,7 @@ public void testLoadToolsIndex() throws Exception {
107
107
List <ToolReference > loadedToolsReferences = IndexHelper .loadToolsIndex (indexFile );
108
108
109
109
// Verify that the loaded resources match the original ones
110
- assertEquals (loadedToolsReferences .size (), loadedToolsReferences .size ());
110
+ assertEquals (TOOL_REFERENCES .size (), loadedToolsReferences .size ());
111
111
for (int i = 0 ; i < loadedToolsReferences .size (); i ++) {
112
112
ToolReference expected = TOOL_REFERENCES .get (i );
113
113
ToolReference actual = loadedToolsReferences .get (i );
You can’t perform that action at this time.
0 commit comments