[xUnit 3] Fix broken Akka.Remote.TestKit.Xunit2#8129
Merged
Aaronontheweb merged 4 commits intoMar 24, 2026
Conversation
Arkatufus
commented
Mar 24, 2026
| public static Config Default() | ||
| { | ||
| return FromResource("Akka.Remote.TestKit.Internals.Reference.conf"); | ||
| return FromResource($"{typeof(AssemblyLocator).Assembly.GetName().Name}.Internals.Reference.conf"); |
Contributor
Author
There was a problem hiding this comment.
Actual fix, do not use hard coded assembly name, determine it during runtime instead.
Contributor
Author
There was a problem hiding this comment.
this class is now shared between Akka.Remote.TestKit and Akka.Remote.TestKit.Xunit2
Arkatufus
added a commit
to Arkatufus/akka.net
that referenced
this pull request
Mar 27, 2026
* [xUnit 3] Fix broken Akka.Remote.TestKit.Xunit2 * Update API Approval list * Add local only test project for Akka.Remote.TestKit.Xunit2 (cherry picked from commit ed2c263)
Aaronontheweb
pushed a commit
that referenced
this pull request
Mar 30, 2026
* Merge MNTR back to core (#8133) * initial commit * Refactor all multinode projects to use the in repo project * Update slopwatch baseline list * resync xunit version for Akka.MultiNode.TestAdapter * Fix project build targets * Revert "Fix project build targets" This reverts commit 71ee93c. * Exclude TestAdapter.Tests from running in net framework tests in CI/CD * Enable test discovery error reporting (cherry picked from commit 152eb10) * Post-cherry pick fix * Rerun CI/CD * [xUnit 3] Fix broken Akka.Remote.TestKit.Xunit2 (#8129) * [xUnit 3] Fix broken Akka.Remote.TestKit.Xunit2 * Update API Approval list * Add local only test project for Akka.Remote.TestKit.Xunit2 (cherry picked from commit ed2c263) * Update API approval list
4 tasks
Aaronontheweb
pushed a commit
that referenced
this pull request
Apr 24, 2026
* [xUnit 3] Fix broken Akka.Remote.TestKit.Xunit2 * Update API Approval list * Add local only test project for Akka.Remote.TestKit.Xunit2
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Changes
Akka.Remote.TestKit.Xunit2 was using the wrong resource path to load its default HOCON config, causing exception during initialization.