From 1a988b4919f47dc0799c8a427850aab6d421bf5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fa=CC=81bio=20Madeira?= Date: Wed, 6 Sep 2017 17:12:13 +0100 Subject: [PATCH] Minor fix for making the test pass. Default catefory is not 'auth' anymore. --- tests/test_pdbx.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_pdbx.py b/tests/test_pdbx.py index 76f8404..c5c00dd 100644 --- a/tests/test_pdbx.py +++ b/tests/test_pdbx.py @@ -346,7 +346,8 @@ def test_writer_cif_atom(self): def test_writer_pdb_atom(self): if os.path.isfile(self.inputcif): self.writer(self.inputcif, self.outputpdb).run(atom=('CA',), - format_type="pdb") + format_type="pdb", + category="auth") self.assertTrue(os.path.isfile(self.outputpdb)) # reading the output reader = self.reader(self.outputpdb)