File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -475,11 +475,11 @@ def test_parse_deidentify_text_response_no_entities(self):
475475 def test_parse_reidentify_text_response (self ):
476476 """Test parsing reidentify text response."""
477477 mock_api_response = Mock ()
478- mock_api_response .processed_text = "Reidentified text with actual values"
478+ mock_api_response .text = "Reidentified text with actual values"
479479
480480 result = parse_reidentify_text_response (mock_api_response )
481481
482- self .assertEqual (result .processed_text , "Reidentified text with actual values" )
482+ self .assertEqual (result .text , "Reidentified text with actual values" )
483483
484484 def test__convert_detected_entity_to_entity_info (self ):
485485 """Test converting detected entity to EntityInfo object."""
You can’t perform that action at this time.
0 commit comments