diff --git a/ietf/doc/tests.py b/ietf/doc/tests.py index 57feadff8..c37d132c6 100644 --- a/ietf/doc/tests.py +++ b/ietf/doc/tests.py @@ -1056,9 +1056,9 @@ class DocTestCase(TestCase): self.assertNotIn('day', entry) april1 = IndividualRfcFactory.create( - stream_id = 'rse', + stream_id = 'ise', states = [('draft','rfc'),('draft-iesg','pub')], - std_level_id = 'ind', + std_level_id = 'inf', time = datetime.datetime(1990,0o4,0o1), ) num = april1.rfc_number() diff --git a/ietf/group/tests.py b/ietf/group/tests.py index 212cd2657..493a49c09 100644 --- a/ietf/group/tests.py +++ b/ietf/group/tests.py @@ -74,7 +74,7 @@ class GroupDocDependencyGraphTests(TestCase): set_coverage_checking(False) a = WgDraftFactory() b = WgDraftFactory() - RelatedDocument.objects.create(source=a,target=b.docalias.first(),relationship_id='normref') + RelatedDocument.objects.create(source=a,target=b.docalias.first(),relationship_id='refnorm') def tearDown(self): set_coverage_checking(True)