Skip to content

Commit 3cfa49d

Browse files
authored
Merge pull request o3de#17653 from aws-lumberyard-dev/daimini/PythonTestBuildErrorFix
Fix build issue with Python unit test.
2 parents 369f604 + e72006c commit 3cfa49d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Code/Framework/AzToolsFramework/Tests/PythonLoaderTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ namespace UnitTest
8181
AZStd::vector<AZStd::string> expectedResults;
8282
expectedResults.emplace_back(testFullSiteLIbsPath.LexicallyNormal().Native());
8383

84-
static constexpr auto testEggLinkPaths = AZStd::to_array<const char*>({ "/lib/path/one", "/lib/path/two", "/lib/path/three" });
84+
static constexpr AZStd::array<const char*, 3> testEggLinkPaths({ "/lib/path/one", "/lib/path/two", "/lib/path/three" });
8585
int index = 0;
8686
for (const char* testEggLinkPath : testEggLinkPaths)
8787
{

0 commit comments

Comments
 (0)