Skip to content

Commit

Permalink
Merge pull request #827 from DataDog/xgouchet/RUMM-1930/prepare_alpha…
Browse files Browse the repository at this point in the history
…-1.12.0

Bump to version 1.12.0-alpha1
  • Loading branch information
xgouchet committed Jan 25, 2022
2 parents 78531f2 + 310b28d commit e493041
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object AndroidConfig {
const val MIN_SDK_FOR_COMPOSE = 21
const val BUILD_TOOLS_VERSION = "31.0.0"

val VERSION = Version(1, 12, 0, Version.Type.Dev)
val VERSION = Version(1, 12, 0, Version.Type.Alpha(1))
}

@Suppress("UnstableApiUsage")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ internal class RumResourceScopeTest {
assertThat(lastValue)
.apply {
hasMessage(message)
hasSource(source)
hasErrorSource(source)
hasStackTrace(stackTrace)
isCrash(false)
hasResource(fakeUrl, fakeMethod, 0L)
Expand Down Expand Up @@ -954,7 +954,8 @@ internal class RumResourceScopeTest {
fakeEventTime,
fakeAttributes,
fakeServerOffset,
mockDetector
mockDetector,
mockRumEventSourceProvider
)
doAnswer { true }.whenever(mockDetector).isFirstPartyUrl(brokenUrl)
val attributes = forge.exhaustiveAttributes(excludedKeys = fakeAttributes.keys)
Expand Down Expand Up @@ -982,7 +983,7 @@ internal class RumResourceScopeTest {
assertThat(lastValue)
.apply {
hasMessage(message)
hasSource(source)
hasErrorSource(source)
hasStackTrace(stackTrace)
isCrash(false)
hasResource(brokenUrl, fakeMethod, 0L)
Expand Down Expand Up @@ -1098,7 +1099,7 @@ internal class RumResourceScopeTest {
assertThat(lastValue)
.apply {
hasMessage(message)
hasSource(source)
hasErrorSource(source)
hasStackTrace(stackTrace)
isCrash(false)
hasResource(fakeUrl, fakeMethod, 0L)
Expand Down Expand Up @@ -1214,7 +1215,7 @@ internal class RumResourceScopeTest {
assertThat(lastValue)
.apply {
hasMessage(message)
hasSource(source)
hasErrorSource(source)
hasStackTrace(stackTrace)
isCrash(false)
hasResource(fakeUrl, fakeMethod, 0L)
Expand Down Expand Up @@ -1341,7 +1342,7 @@ internal class RumResourceScopeTest {
assertThat(lastValue)
.apply {
hasMessage(message)
hasSource(source)
hasErrorSource(source)
hasStackTrace(stackTrace)
isCrash(false)
hasResource(fakeUrl, fakeMethod, statusCode)
Expand Down

0 comments on commit e493041

Please sign in to comment.