Skip to content

Commit

Permalink
Fix sprintf schema
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Aug 7, 2024
1 parent 43d41c3 commit a824d88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ func (suite *TreatmentServiceTestSuite) SetupSuite() {
if err != nil {
panic(err)
}
kafkaAddress = fmt.Sprintf("%s:%d", containerIp, "9093")
kafkaAddress = fmt.Sprintf("%s:%s", containerIp, "9093")
pubsubIp, err := emulator.ContainerIP(ctx)
if err != nil {
panic(err)
Expand Down

0 comments on commit a824d88

Please sign in to comment.