File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
ravendb/tests/jvm_migrated_tests/client_tests/documents_tests/commands_tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def test_can_put_document_using_command(self):
39
39
40
40
# @unittest.skip("todo: Not passing on CI/CD")
41
41
def test_can_put_document_using_command_with_surrogate_pairs (self ):
42
- name_with_emojis = "Gracjan \\ ud83d \\ ude21 \\ ud83d \\ ude21 \\ ud83e \\ udd2c \\ ud83d \\ ude00 😡😡🤬😀"
42
+ name_with_emojis = "Gracjan 😡😡🤬😀"
43
43
44
44
user = User (name = name_with_emojis , age = 31 )
45
45
node = Utils .entity_to_dict (user , self .store .conventions .json_default_method )
@@ -71,5 +71,5 @@ def test_can_put_document_using_command_with_utf_8_chars(self):
71
71
self .assertIsNotNone (result .change_vector )
72
72
73
73
with self .store .open_session () as session :
74
- loaded_user = session .load ("articles/1" , Article )
75
- self .assertEqual (loaded_user . name , title_with_emojis )
74
+ loaded_article = session .load ("articles/1" , Article )
75
+ self .assertEqual (loaded_article . title , title_with_emojis )
You can’t perform that action at this time.
0 commit comments