Change name: instance_method_mock_fixture() -> late_instance_mock_fixture()
authorKarl O. Pinc <kop@karlpinc.com>
Sat, 16 Mar 2024 21:17:46 +0000 (16:17 -0500)
committerKarl O. Pinc <kop@karlpinc.com>
Sat, 16 Mar 2024 21:17:46 +0000 (16:17 -0500)
tests/test_pgwui_copy.py

index eaa9208218c075cffca03652350af535b881b1f7..7ecd0667f902467380357b1724bfc9751fabd708 100644 (file)
@@ -1,4 +1,5 @@
-# Copyright (C) 2019, 2020 The Meme Factory, Inc.  http://www.karlpinc.com/
+# Copyright (C) 2019, 2020, 2024 The Meme Factory, Inc.
+# http://www.karlpinc.com/
 
 # This file is part of PGWUI_Copy.
 #
@@ -100,8 +101,8 @@ mock_establish_settings = testing.make_mock_fixture(
 
 # includeme()
 
-mock_add_route = testing.instance_method_mock_fixture('add_route')
-mock_scan = testing.instance_method_mock_fixture('scan')
+mock_add_route = testing.late_instance_mock_fixture('add_route')
+mock_scan = testing.late_instance_mock_fixture('scan')
 
 
 @pytest.mark.unittest