From 1920086693f51f03ea39f4feaea4fb695d5035d3 Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Wed, 17 Jan 2024 17:17:16 -0500 Subject: [PATCH] fixing method name --- src/registrar/views/domain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registrar/views/domain.py b/src/registrar/views/domain.py index b5ba25a89..4d47a6f59 100644 --- a/src/registrar/views/domain.py +++ b/src/registrar/views/domain.py @@ -225,7 +225,7 @@ class DomainAuthorizingOfficialView(DomainFormBaseView): # Set the domain information in the form so that it can be accessible # to associate a new Contact as authorizing official, if new Contact is needed # in the save() method - form.setDomainInfo(self.object.domain_info) + form.set_domain_info(self.object.domain_info) form.save() messages.success(self.request, "The authorizing official for this domain has been updated.")