You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug ExtractDomain mistakenly checks source first then url.
To Reproduce
Steps to reproduce the behavior:
Fix unit test by updating the data2 variable in ExtractDomainTest to be the following: private val data2 = Seq.newBuilder.+=( (index, "http://www.umiacs.umd.edu/~jimmylin/", umiacs), ("https://github.com/lintool", "http://www.umiacs.umd.edu/~jimmylin/", "github.com"), (index, "https://github.com/lintool", "github.com")).result()
Run mvn clean package
See error and build fails
Expected behavior mvn clean package should not produce any error after fixing the unit test ExtractDomainTest. Build should succeed.
Environment information
AUT version: HEAD
OS: tuna
Java version: Java 8
The text was updated successfully, but these errors were encountered:
Describe the bug
ExtractDomain
mistakenly checkssource
first thenurl
.To Reproduce
Steps to reproduce the behavior:
data2
variable inExtractDomainTest
to be the following:private val data2 = Seq.newBuilder.+=( (index, "http://www.umiacs.umd.edu/~jimmylin/", umiacs), ("https://github.com/lintool", "http://www.umiacs.umd.edu/~jimmylin/", "github.com"), (index, "https://github.com/lintool", "github.com")).result()
mvn clean package
Expected behavior
mvn clean package
should not produce any error after fixing the unit testExtractDomainTest
. Build should succeed.Environment information
The text was updated successfully, but these errors were encountered: