Skip to content

Commit

Permalink
replace config_test test value
Browse files Browse the repository at this point in the history
Summary: I'm not sure this matters or not, but to clean up `zbgs`, replace `experimental_systemd` with a different bool config

Reviewed By: kmancini

Differential Revision: D51728414

fbshipit-source-id: 3b6c6756e84ccee16e7c8222f46f06c816616197
  • Loading branch information
genevievehelsel authored and facebook-github-bot committed Dec 4, 2023
1 parent bbc9b41 commit 53e02a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eden/fs/cli/test/config_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down

0 comments on commit 53e02a2

Please sign in to comment.