Skip to content

Commit ccdaf7b

Browse files
Update tests/utils/test_artifact.py
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 2a66c5c commit ccdaf7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/utils/test_artifact.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def test_generated_id_comes_from_uuid4(self, mock_uuid4):
180180
mock_uuid = uuid.UUID('abcdef12-1234-5678-1234-567812345678')
181181
mock_uuid4.return_value = mock_uuid
182182
streamer = ArtifactStreamer(self.context_id, self.task_id)
183-
self.assertEqual(streamer.artifact_id, str(mock_uuid))
183+
self.assertEqual(streamer._artifact_id, str(mock_uuid))
184184

185185
def test_default_name_is_response(self):
186186
streamer = ArtifactStreamer(self.context_id, self.task_id)

0 commit comments

Comments
 (0)