Skip to content

Commit dc21aa8

Browse files
committed
Remove usage of Option.get
1 parent 24b23e3 commit dc21aa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/scala/com/codacy/client/bitbucket/v2/UserSpecs.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class UserSpecs extends FlatSpec with Matchers with Inside {
200200
uuid shouldBe "{c19f822b-0e29-433a-87a5-ec8ace58aa67}"
201201
display_name shouldBe "João Lopes"
202202
nickname shouldBe "jllopes"
203-
avatarUrl.get shouldBe "https://bitbucket.org/account/jllopes/avatar/"
203+
avatarUrl shouldBe Some("https://bitbucket.org/account/jllopes/avatar/")
204204
}
205205
)
206206
}

0 commit comments

Comments
 (0)