@@ -36,7 +36,7 @@ def data_for_sorting():
3636
3737@pytest .fixture  
3838def  data_missing_for_sorting ():
39-     return  JSONArray ([{'b' : 1 }, {}, {'c ' : 4 }])
39+     return  JSONArray ([{'b' : 1 }, {}, {'a ' : 4 }])
4040
4141
4242@pytest .fixture  
@@ -80,28 +80,15 @@ def test_fillna_frame(self):
8080
8181
8282class  TestMethods (base .BaseMethodsTests ):
83-     @pytest .mark .skip (reason = "Unhashable" ) 
84-     def  test_value_counts (self , all_data , dropna ):
85-         pass 
83+     unhashable  =  pytest .mark .skip (reason = "Unhashable" )
8684
87-     @pytest .mark .skip (reason = "Dictionaries are not orderable." ) 
88-     def  test_argsort (self ):
89-         pass 
90- 
91-     @pytest .mark .skip (reason = "Dictionaries are not orderable." ) 
92-     def  test_argsort_missing (self ):
93-         pass 
94- 
95-     @pytest .mark .skip (reason = "Dictionaries are not orderable." ) 
96-     def  test_sort_values (self ):
97-         pass 
98- 
99-     @pytest .mark .skip (reason = "Dictionaries are not orderable." ) 
100-     def  test_sort_values_missing (self ):
85+     @unhashable  
86+     def  test_value_counts (self , all_data , dropna ):
10187        pass 
10288
103-     @pytest . mark . skip ( reason = "Dictionaries are not orderable." )  
89+     @unhashable  
10490    def  test_sort_values_frame (self ):
91+         # TODO (EA.factorize): see if _values_for_factorize allows this. 
10592        pass 
10693
10794
0 commit comments