Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump ktlint from 0.33.0 to 0.34.0 #95

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[*.{kt,kts}]
disabled_rules=no-wildcard-imports,import-ordering,final-newline
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ subprojects {
}

dependencies {
ktlint "com.pinterest:ktlint:0.33.0"
ktlint "com.pinterest:ktlint:0.34.0"
// common
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package com.njkim.reactivecrypto.bitstamp
import com.njkim.reactivecrypto.core.common.model.currency.Currency
import com.njkim.reactivecrypto.core.common.model.currency.CurrencyPair
import org.assertj.core.api.Assertions
import org.assertj.core.api.Assertions.assertThat
import org.junit.Test
import reactor.test.StepVerifier
import java.math.BigDecimal
Expand All @@ -18,13 +17,13 @@ class BitstampRawWebsocketClientTest {
StepVerifier.create(liveTickerFlux.limitRequest(3))
.expectNextCount(2)
.assertNext { messageFrame ->
assertThat(messageFrame.currencyPair)
Assertions.assertThat(messageFrame.currencyPair)
.isEqualTo(targetCurrencyPair)

assertThat(messageFrame.data.amount)
Assertions.assertThat(messageFrame.data.amount)
.isNotNull()

assertThat(messageFrame.data.price)
Assertions.assertThat(messageFrame.data.price)
.isNotNull()
}
.verifyComplete()
Expand Down