-
Notifications
You must be signed in to change notification settings - Fork 618
Fix ptest regression in python-daemon on arm64 [Work Item: # 16234]
#15960
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
Merged
kgodara912
merged 2 commits into
microsoft:3.0-dev
from
Ratiranjan5:topic_python-daemon-3.0
Mar 10, 2026
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
...ython-daemon/python-daemon-3.0.1-fix-ptest-deprecated-assertEquals-with-assertEqual.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| From f5ed6cdd0a9fa3c0ce6d5b862d10da253945e791 Mon Sep 17 00:00:00 2001 | ||
| From: Ben Finney <ben+python@benfinney.id.au> | ||
| Date: Oct 12 2023 22:25:06 +0000 | ||
| Subject: Migrate TestCase method to current name ‘assertEqual’. | ||
|
|
||
| Upstream Patch Reference: | ||
| https://pagure.io/python-daemon/c/f5ed6cdd0a9fa3c0ce6d5b862d10da253945e791.patch | ||
| --- | ||
| test/test_daemon.py | 2 +- | ||
| 1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
|
||
| diff --git a/test/test_daemon.py b/test/test_daemon.py | ||
| index 16df21e..77a0c08 100644 | ||
| --- a/test/test_daemon.py | ||
| +++ b/test/test_daemon.py | ||
| @@ -2247,7 +2247,7 @@ class set_signal_handlers_TestCase(scaffold.TestCase): | ||
| unittest.mock.call(signal_number, handler) | ||
| for (signal_number, handler) in signal_handler_map.items()] | ||
| daemon.daemon.set_signal_handlers(signal_handler_map) | ||
| - self.assertEquals(expected_calls, mock_func_signal_signal.mock_calls) | ||
| + self.assertEqual(expected_calls, mock_func_signal_signal.mock_calls) | ||
|
|
||
|
|
||
| @unittest.mock.patch.object(daemon.daemon.atexit, "register") | ||
| -- | ||
| 2.45.4 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Can you check this patch is merged in which version of python-daemon, trying to figure out if minor upgrade will fix this?
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.
version 3.0.2 has been yanked from PyPI