-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{Misc.} Remove all occurrences of assertNotEquals #29120
Conversation
️✔️AzureCLI-FullTest
|
️✔️AzureCLI-BreakingChangeTest
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
c001443
to
a8beeaa
Compare
Python 3.12 removes assertNotEquals, so we are removing the uses by replacing it by assertNotEqual.
a8beeaa
to
86edf13
Compare
@bebound Why was this put back into the backlog? It's not a breaking change. |
The removal of |
@@ -378,7 +378,7 @@ def test_live_event_update(self, storage_account_for_create): | |||
|
|||
self.assertIsNotNone(live_event_updated['crossSiteAccessPolicies']['crossDomainPolicy']) | |||
self.assertIsNotNone(live_event_updated['crossSiteAccessPolicies']['clientAccessPolicy']) | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW, I always hate trailing whitespace (#27243).
Description
Python 3.12 removes
assertNotEquals
, so we are removing the uses by replacing it byassertNotEqual
.This checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.