mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix test_get_property to ignore series_sort when lang is not eng
This commit is contained in:
parent
568faa1952
commit
e54625a320
@ -51,6 +51,11 @@ class LegacyTest(BaseTest):
|
|||||||
if label in {'tags', 'formats'}:
|
if label in {'tags', 'formats'}:
|
||||||
# Order is random in the old db for these
|
# Order is random in the old db for these
|
||||||
ans[label] = tuple(set(x.split(',')) if x else x for x in ans[label])
|
ans[label] = tuple(set(x.split(',')) if x else x for x in ans[label])
|
||||||
|
if label == 'series_sort':
|
||||||
|
# The old db code did not take book language into account
|
||||||
|
# when generating series_sort values (the first book has
|
||||||
|
# lang=deu)
|
||||||
|
ans[label] = ans[label][1:]
|
||||||
return ans
|
return ans
|
||||||
|
|
||||||
old = self.init_old()
|
old = self.init_old()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user