Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
Summary:
We are getting a compilation error on master:
```
File "command/test/baseConfigurationTest.ml", line 38, characters 22-29:
38 |     system_platform = "linux";
                           ^^^^^^^
Error: This expression has type string but an expression was expected of type
         string option
```
Let's fix it.

Reviewed By: dkgi, Healdb

Differential Revision: D64109699

fbshipit-source-id: 94d36c2ce86cf01d877e1810359d5c02cf967e9d
  • Loading branch information
arthaud authored and facebook-github-bot committed Oct 9, 2024
1 parent baa217b commit d2be79a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/command/test/baseConfigurationTest.ml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ let dummy_base_configuration =
debug = false;
enable_type_comments = true;
python_version = Configuration.PythonVersion.create ();
system_platform = "linux";
system_platform = None;
parallel = false;
number_of_workers = 1;
long_lived_workers = None;
Expand Down

0 comments on commit d2be79a

Please sign in to comment.