diff --git a/eden/fs/cli/test/config_test.py b/eden/fs/cli/test/config_test.py index 120d38ebc0cad..2fd8d935893b8 100644 --- a/eden/fs/cli/test/config_test.py +++ b/eden/fs/cli/test/config_test.py @@ -467,11 +467,11 @@ def test_str_sequences_are_interpolated(self) -> None: def test_unexpected_type_error_messages_are_helpful(self) -> None: self.assertEqual( - 'Expected boolean for service.experimental_systemd, but got string: "true"', + 'Expected boolean for telemetry.enable-inodetracebus, but got string: "true"', str( UnexpectedType( - section="service", - option="experimental_systemd", + section="telemetry", + option="enable-inodetracebus", value="true", expected_type=bool, )