Skip to content

Commit e867ecf

Browse files
committed
temp: introduce regression
1 parent 8e602fb commit e867ecf

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.buildkite/hooks/pre-command

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export BUILDKITE_API_TOKEN=$(buildkite-agent secret get BUILDKITE_API_TOKEN)

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ steps:
9090
<<: *test_collector_common_params
9191
api-token-env-name: "BUILDKITE_ANALYTICS_TOKEN_UNIT_TESTS"
9292
- claude-summarize#v1.1.0:
93-
api_key: "ANTHROPIC_API_KEY"
93+
api_key: "$ANTHROPIC_API_KEY"
9494
artifact_paths:
9595
- "**/build/test-results/merged-test-results.xml"
9696

WooCommerce/src/main/kotlin/com/woocommerce/android/model/Address.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ data class Address(
8181
fun toShippingLabelModel(): ShippingLabelAddress {
8282
return ShippingLabelAddress(
8383
company = company,
84-
name = "$firstName $lastName".trim().takeIf { it.isNotBlank() },
84+
name = "$firstName $lastName".trim().takeIf { it.isBlank() },
8585
phone = phone,
8686
address = address1,
8787
address2 = address2,

0 commit comments

Comments
 (0)