~ubuntu-core-dev/update-manager/main

« back to all changes in this revision

Viewing changes to tests/test_hwe_support_status.py

  • Committer: Łukasz 'sil2100' Zemczak
  • Date: 2022-04-11 07:57:47 UTC
  • Revision ID: lukasz.zemczak@canonical.com-20220411075747-mi75tk95efenm8g7
Adjust dates in hwe-support-status for jammy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
                text = mock_print.call_args[0][0]
122
122
                print("43242343243", mock_print.call_count)
123
123
                self.assertIn(
124
 
                    "Your system is supported until April 2025", text)
 
124
                    "Your system is supported until April 2027", text)
125
125
 
126
126
    def test_advice_about_hwe_status_supported_hwe_stack(self):
127
127
        with patch("hwe_support_status.is_unsupported_hwe_running") as m:
139
139
                text = mock_print.call_args[0][0]
140
140
                self.assertIn(
141
141
                    "Your Hardware Enablement Stack (HWE) is supported "
142
 
                    "until April 2025", text)
 
142
                    "until April 2027", text)
143
143
 
144
144
 
145
145
if __name__ == "__main__":