Skip to content

Commit

Permalink
Fix wrong boolean in python test
Browse files Browse the repository at this point in the history
  • Loading branch information
ll-nick committed Dec 19, 2024
1 parent e28824f commit ee43976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sub_command_differs_from_command_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def test_subcommand_type_differs_from_command_type(self):
NO_FLAGS = ag_subcommand.RandomArbitrator.Option.Flags.NO_FLAGS

test_behavior_high_weight = ag_subcommand.testing_types.DummyBehavior(
True, False, "___HighWeight___"
False, False, "___HighWeight___"
)
test_behavior_mid_weight = ag_subcommand.testing_types.DummyBehavior(
True, False, "__MidWeight__"
Expand Down

0 comments on commit ee43976

Please sign in to comment.