Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e354c4d81152
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2a292474728a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 29, 2021

  1. Fix a test.

    pleroy committed May 29, 2021
    Copy the full SHA
    2a29247 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 base/recurring_thread_test.cpp
2 changes: 1 addition & 1 deletion base/recurring_thread_test.cpp
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ TEST_F(RecurringThreadTest, NoResult) {

auto add_one_half = [&value](int const input) {
value = static_cast<double>(input) + 0.5;
return Status::OK;
return absl::OkStatus();
};

ToyRecurringThread1 thread(std::move(add_one_half), 1ms);