Moving analysis from frc971 to aos, cleanup
bazel run -c opt //aos/analysis:in_process_plotter_demo
now works.
Signed-off-by: Stephan Pleines <pleines.stephan@gmail.com>
Change-Id: Icbe7255ea3988b8fe575253f99b30310a6720bd8
diff --git a/aos/flatbuffers/static_flatbuffers_test.cc b/aos/flatbuffers/static_flatbuffers_test.cc
index 2acc3c8..6072be0 100644
--- a/aos/flatbuffers/static_flatbuffers_test.cc
+++ b/aos/flatbuffers/static_flatbuffers_test.cc
@@ -796,17 +796,17 @@
// Try to cover ~all supported scalar/flatbuffer types using JSON convenience
// functions.
TEST_F(StaticFlatbuffersTest, FlatbufferTypeCoverage) {
- VerifyJson<frc971::testing::ConfigurationStatic>("{\n\n}");
+ VerifyJson<aos::testing::ConfigurationStatic>("{\n\n}");
std::string populated_config =
aos::util::ReadFileToStringOrDie(aos::testing::ArtifactPath(
"aos/flatbuffers/test_dir/type_coverage.json"));
// Get rid of a pesky new line.
populated_config = populated_config.substr(0, populated_config.size() - 1);
- VerifyJson<frc971::testing::ConfigurationStatic>(populated_config);
+ VerifyJson<aos::testing::ConfigurationStatic>(populated_config);
// And now play around with mutating the buffer.
- Builder<frc971::testing::ConfigurationStatic> builder =
- aos::JsonToStaticFlatbuffer<frc971::testing::ConfigurationStatic>(
+ Builder<aos::testing::ConfigurationStatic> builder =
+ aos::JsonToStaticFlatbuffer<aos::testing::ConfigurationStatic>(
populated_config);
ASSERT_TRUE(builder.Verify());
builder.get()->clear_foo_float();