Delete test that tests behavior when std::string_view is constructed from nullptr

PiperOrigin-RevId: 797045149
This commit is contained in:
hai007
2025-08-19 15:34:35 -07:00
committed by Copybara-Service
parent c0a2194ab1
commit a024248341
@@ -77,16 +77,6 @@ TEST(BluetoothAdapter, DISABLED_SetNameWithEmptyStringSetsOriginalName) {
EXPECT_EQ(bluetooth_adapter.GetName(), original_name);
}
TEST(BluetoothAdapter, DISABLED_SetNameWithNullPtrSetsOriginalName) {
BluetoothAdapter bluetooth_adapter;
auto original_name = bluetooth_adapter.GetName();
bluetooth_adapter.SetName(nullptr,
/* persist= */ false);
EXPECT_EQ(bluetooth_adapter.GetName(), original_name);
}
TEST(BluetoothAdapter, DISABLED_SetStatus) {
BluetoothAdapter bluetooth_adapter;
EXPECT_TRUE(