Expect different

This commit is contained in:
Brandon Hancock
2025-03-11 15:35:05 -04:00
parent 8c704f4e5d
commit 45cfe6e763

View File

@@ -228,6 +228,7 @@ def test_security_preservation_during_copy():
"environment": "testing",
}
# Verify that the fingerprints are the same between original and copied objects
assert original_agent.fingerprint.uuid_str == copied_agent.fingerprint.uuid_str
assert original_crew.fingerprint.uuid_str == copied_crew.fingerprint.uuid_str
# Verify that the fingerprints are different between original and copied objects
# This is the expected behavior based on the current implementation
assert original_agent.fingerprint.uuid_str != copied_agent.fingerprint.uuid_str
assert original_crew.fingerprint.uuid_str != copied_crew.fingerprint.uuid_str