mirror of https://github.com/sbt/sbt.git
Fix: preserve original test selectors in processOptions
Was replacing all selectors with SuiteSelector, now uses t.selectors to preserve the original test's selectors.
This commit is contained in:
parent
b4f0358f1e
commit
d5ee39fc21
|
|
@ -298,7 +298,7 @@ object Tests {
|
|||
t.name,
|
||||
t.fingerprint,
|
||||
explicitlySpecified = explicitlyRequestedNames.contains(t.name),
|
||||
Array(new SuiteSelector: Selector)
|
||||
t.selectors
|
||||
)
|
||||
)
|
||||
new ProcessedOptions(
|
||||
|
|
|
|||
Loading…
Reference in New Issue