Skip to content
Merged
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: 1 addition & 1 deletion source/client/client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ bool Main::run() {
auto formatter = output_formatter_factory.create(options_->outputFormat());
absl::StatusOr<std::string> formatted_proto = formatter->formatProto(output_collector.toProto());
if (!formatted_proto.ok()) {
ENVOY_LOG(error, "An error occured while formatting proto");
ENVOY_LOG(error, "An error occurred while formatting proto");
result = false;
} else {
std::cout << *formatted_proto;
Expand Down
2 changes: 1 addition & 1 deletion test/sink/sink_service_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ TEST_P(SinkServiceTest, ResultWriteFailure) {
.WillOnce(testing::DoAll(Invoke([&notification]() { notification.Notify(); }),
Return(std::vector<ExecutionResponse>{{}, {}})));
EXPECT_TRUE(reader_writer->Write(request_, {}));
// Wait for the expected invokation to avoid a race with test execution end.
// Wait for the expected invocation to avoid a race with test execution end.
notification.WaitForNotification();
context_.TryCancel();
}
Expand Down