diff --git a/fusion_plating/fusion_plating/tests/test_quality_split.py b/fusion_plating/fusion_plating/tests/test_quality_split.py index efedad0c..9c459590 100644 --- a/fusion_plating/fusion_plating/tests/test_quality_split.py +++ b/fusion_plating/fusion_plating/tests/test_quality_split.py @@ -69,15 +69,15 @@ class TestQualitySplit(TransactionCase): # AVL: Manager read-only, QM full def test_manager_can_read_avl(self): - Avl = self.env.get('fp.approved.vendor.list') + Avl = self.env.get('fusion.plating.avl') if not Avl: - self.skipTest('fp.approved.vendor.list model not available') + self.skipTest('fusion.plating.avl model not available') Avl.with_user(self.u_mgr).check_access_rights('read') def test_manager_cannot_write_avl(self): - Avl = self.env.get('fp.approved.vendor.list') + Avl = self.env.get('fusion.plating.avl') if not Avl: - self.skipTest('fp.approved.vendor.list model not available') + self.skipTest('fusion.plating.avl model not available') with self.assertRaises(AccessError): Avl.with_user(self.u_mgr).check_access_rights('write')