Merge branch 'main' into feature/pythonInterface/eos

This commit is contained in:
2025-06-12 14:19:56 -04:00
5 changed files with 8 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ TEST_F(resourceManagerTest, getAvaliableResources) {
serif::config::Config::getInstance().loadConfig(TEST_CONFIG);
serif::resource::ResourceManager& rm = serif::resource::ResourceManager::getInstance();
std::vector<std::string> resources = rm.getAvailableResources();
std::set<std::string> expected = {"eos:helm", "mesh:sphere"};
std::set<std::string> expected = {"eos:helm", "mesh:polySphere"};
std::set<std::string> actual(resources.begin(), resources.end());
EXPECT_EQ(expected, actual);
}