Disallow deprecated symbol/dbPointer types from corpus test.
(corpus)
| 892 | |
| 893 | @staticmethod |
| 894 | def fix_up_curpus(corpus): |
| 895 | """Disallow deprecated symbol/dbPointer types from corpus test.""" |
| 896 | for key in corpus: |
| 897 | if "_symbol_" in key or "_dbPointer_" in key: |
| 898 | corpus[key]["allowed"] = False |
| 899 | return corpus |
| 900 | |
| 901 | @staticmethod |
| 902 | def fix_up_curpus_encrypted(corpus_encrypted, corpus): |