Skip to content

Commit

Permalink
fix build linux
Browse files Browse the repository at this point in the history
Signed-off-by: James <[email protected]>
  • Loading branch information
namchuai committed Dec 26, 2024
1 parent 2a30f0f commit 3407ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/test/components/test_assistant.cc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ TEST_F(AssistantTest, FullAssistantToJson) {
// Add metadata
base_assistant.metadata["key1"] = std::string("value1");
base_assistant.metadata["key2"] = true;
base_assistant.metadata["key3"] = 42ULL;
base_assistant.metadata["key3"] = static_cast<uint64_t>(42ULL);

auto result = base_assistant.ToJson();
ASSERT_TRUE(result.has_value());
Expand Down

0 comments on commit 3407ac1

Please sign in to comment.