File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,8 +58,8 @@ def test_snapcraft_exception_handling(
5858 ):
5959 exception = exception_class (** kwargs )
6060
61- assert expected_brief == exception .get_brief ()
62- assert expected_resolution == exception .get_resolution ()
63- assert expected_details == exception .get_details ()
64- assert expected_docs_url == exception .get_docs_url ()
65- assert expected_reportable == exception .get_reportable ()
61+ assert exception .get_brief () == expected_brief
62+ assert exception .get_resolution () == expected_resolution
63+ assert exception .get_details () == expected_details
64+ assert exception .get_docs_url () == expected_docs_url
65+ assert exception .get_reportable () == expected_reportable
Original file line number Diff line number Diff line change @@ -144,8 +144,8 @@ def test_snapcraft_exception_handling(
144144 ):
145145 exception = exception_class (** kwargs )
146146
147- assert expected_brief == exception .get_brief ()
148- assert expected_resolution == exception .get_resolution ()
149- assert expected_details == exception .get_details ()
150- assert expected_docs_url == exception .get_docs_url ()
151- assert expected_reportable == exception .get_reportable ()
147+ assert exception .get_brief () == expected_brief
148+ assert exception .get_resolution () == expected_resolution
149+ assert exception .get_details () == expected_details
150+ assert exception .get_docs_url () == expected_docs_url
151+ assert exception .get_reportable () == expected_reportable
Original file line number Diff line number Diff line change @@ -911,8 +911,8 @@ def test_snapcraft_exception_handling(
911911 ):
912912 exception = exception_class (** kwargs )
913913
914- assert expected_brief == exception .get_brief ()
915- assert expected_resolution == exception .get_resolution ()
916- assert expected_details == exception .get_details ()
917- assert expected_docs_url == exception .get_docs_url ()
918- assert expected_reportable == exception .get_reportable ()
914+ assert exception .get_brief () == expected_brief
915+ assert exception .get_resolution () == expected_resolution
916+ assert exception .get_details () == expected_details
917+ assert exception .get_docs_url () == expected_docs_url
918+ assert exception .get_reportable () == expected_reportable
You can’t perform that action at this time.
0 commit comments