File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
- 2.13.0
6
6
7
7
script :
8
- - sbt ++$TRAVIS_SCALA_VERSION test:compile
8
+ - sbt ++$TRAVIS_SCALA_VERSION test:compile "testOnly *GitHubEventSpec"
9
9
10
10
# Container-based build environment with faster boot times
11
11
sudo : false
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ class GitHubEventSpec extends FunSpec with Matchers with Inside
176
176
head.user shouldBe a [models.User ]
177
177
}
178
178
it(" should have a repo" ) {
179
- head.repo shouldBe a [models.Repository ]
179
+ head.repo.get shouldBe a [models.Repository ]
180
180
}
181
181
}
182
182
it(" should have a base" ) {
@@ -254,7 +254,7 @@ class GitHubEventSpec extends FunSpec with Matchers with Inside
254
254
head.user shouldBe a [models.User ]
255
255
}
256
256
it(" should have a repo" ) {
257
- head.repo shouldBe a [models.Repository ]
257
+ head.repo.get shouldBe a [models.Repository ]
258
258
}
259
259
}
260
260
it(" should have a base" ) {
You can’t perform that action at this time.
0 commit comments