@@ -95,7 +95,7 @@ def test_sortmethod(self):
9595 del plugin_data ["sortmethods" ][:]
9696
9797 def route_list ():
98- yield Listitem .from_dict ("season one" , "test.mkv" )
98+ yield Listitem .from_dict ("http:// season one" , "test.mkv" )
9999
100100 self .route ._process_results (route_list ())
101101 self .assertTrue (plugin_data ["succeeded" ])
@@ -106,7 +106,7 @@ def test_sortmethod_date(self):
106106 del plugin_data ["sortmethods" ][:]
107107
108108 def route_list ():
109- item = Listitem .from_dict ("season one" , "test.mkv" )
109+ item = Listitem .from_dict ("http:// season one" , "test.mkv" )
110110 item .info .date ("june 27, 2017" , "%B %d, %Y" )
111111 yield item
112112
@@ -119,7 +119,7 @@ def test_sortmethod_genre(self):
119119 del plugin_data ["sortmethods" ][:]
120120
121121 def route_list ():
122- yield Listitem .from_dict ("season one" , "test.mkv" , info = {"genre" : "test" })
122+ yield Listitem .from_dict ("http:// season one" , "test.mkv" , info = {"genre" : "test" })
123123
124124 self .route ._process_results (route_list ())
125125 self .assertTrue (plugin_data ["succeeded" ])
@@ -131,7 +131,7 @@ def test_no_sort(self):
131131
132132 def route_list (plugin ):
133133 plugin .autosort = False
134- yield Listitem .from_dict ("season one" , "test.mkv" )
134+ yield Listitem .from_dict ("http:// season one" , "test.mkv" )
135135
136136 self .route ._process_results (route_list (self .route ))
137137 self .assertTrue (plugin_data ["succeeded" ])
@@ -143,7 +143,7 @@ def test_no_sort_genre(self):
143143
144144 def route_list (plugin ):
145145 plugin .autosort = False
146- yield Listitem .from_dict ("season one" , "test.mkv" , info = {"genre" : "test" })
146+ yield Listitem .from_dict ("http:// season one" , "test.mkv" , info = {"genre" : "test" })
147147
148148 self .route ._process_results (route_list (self .route ))
149149 self .assertTrue (plugin_data ["succeeded" ])
@@ -156,7 +156,7 @@ def test_custom_sort_only(self):
156156 def route_list (plugin ):
157157 plugin .autosort = False
158158 plugin .add_sort_methods (3 )
159- yield Listitem .from_dict ("season one" , "test.mkv" , info = {"genre" : "test" })
159+ yield Listitem .from_dict ("http:// season one" , "test.mkv" , info = {"genre" : "test" })
160160
161161 self .route ._process_results (route_list (self .route ))
162162 self .assertTrue (plugin_data ["succeeded" ])
@@ -168,7 +168,7 @@ def test_custom_sort_only_method_2(self):
168168
169169 def route_list (plugin ):
170170 plugin .add_sort_methods (3 , disable_autosort = True )
171- yield Listitem .from_dict ("season one" , "test.mkv" , info = {"genre" : "test" })
171+ yield Listitem .from_dict ("http:// season one" , "test.mkv" , info = {"genre" : "test" })
172172
173173 self .route ._process_results (route_list (self .route ))
174174 self .assertTrue (plugin_data ["succeeded" ])
@@ -180,7 +180,7 @@ def test_custom_sort_with_autosort(self):
180180
181181 def route_list (plugin ):
182182 plugin .add_sort_methods (SORT_DATE )
183- yield Listitem .from_dict ("season one" , "test.mkv" , info = {"genre" : "test" })
183+ yield Listitem .from_dict ("http:// season one" , "test.mkv" , info = {"genre" : "test" })
184184
185185 self .route ._process_results (route_list (self .route ))
186186 self .assertTrue (plugin_data ["succeeded" ])
@@ -192,8 +192,8 @@ def test_custom_sort_override(self):
192192
193193 def route_list (plugin ):
194194 plugin .add_sort_methods (SORT_DATE )
195- yield Listitem .from_dict ("season one" , "test.mkv" , info = {"genre" : "test" })
196- item = Listitem .from_dict ("season one" , "test.mkv" )
195+ yield Listitem .from_dict ("http:// season one" , "test.mkv" , info = {"genre" : "test" })
196+ item = Listitem .from_dict ("http:// season one" , "test.mkv" )
197197 item .info .date ("june 27, 2017" , "%B %d, %Y" )
198198 yield item
199199
0 commit comments