Skip to content

Commit

Permalink
[IMP] product_configurator: fields_view_get is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
SirAionTech committed Oct 29, 2024
1 parent d38181a commit 3f911c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions product_configurator/tests/test_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,10 +342,10 @@ def test_12_fields_get(self):

def test_13_fields_view_get(self):
product_config_wizard = self._check_wizard_nxt_step()
product_config_wizard.fields_view_get()
product_config_wizard.get_view()
product_config_wizard.with_context(
wizard_id=product_config_wizard.id
).fields_view_get()
).get_view()
# custom value
# custom value
self.attr_line_fuel.custom = True
Expand Down Expand Up @@ -408,7 +408,7 @@ def test_13_fields_view_get(self):
product_config_wizard_1.action_next_step()
product_config_wizard_1.with_context(
wizard_id=product_config_wizard_1.id
).fields_view_get()
).get_view()

def test_14_unlink(self):
product_config_wizard = self._check_wizard_nxt_step()
Expand Down

0 comments on commit 3f911c6

Please sign in to comment.