Skip to content

Commit

Permalink
Trivial: Make TestDub non-final
Browse files Browse the repository at this point in the history
There is no reason to limit inheritance on this class.
  • Loading branch information
Geod24 committed Dec 26, 2023
1 parent b3350d1 commit e2e8398
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/dub/dub.d
Original file line number Diff line number Diff line change
Expand Up @@ -1839,7 +1839,7 @@ private class DependencyVersionResolver : DependencyResolver!(Dependency, Depend
* nor should it do any file IO, to make it usable and reliable in unittests.
* Currently it reads environment variables but does not read the configuration.
*/
version(unittest) package final class TestDub : Dub
version(unittest) package class TestDub : Dub
{
/// Forward to base constructor
public this (string root = ".", PackageSupplier[] extras = null,
Expand Down

0 comments on commit e2e8398

Please sign in to comment.