Skip to content

Commit

Permalink
Fix contbuild
Browse files Browse the repository at this point in the history
Summary: D66158787 caused the contbuild to break. Unclear why it passed CI.

Reviewed By: simonmar

Differential Revision: D66359184

fbshipit-source-id: 95f610276687723d5c3fb5be08c2f1baf5d74aac
  • Loading branch information
Josef Svenningsson authored and facebook-github-bot committed Nov 22, 2024
1 parent 7a1b27e commit d1576ba
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions glean/test/lib/TestData.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ module TestData
) where

import Data.Default
import qualified Data.Set as Set

import Glean.Typed
import Glean.Types
Expand Down Expand Up @@ -42,8 +43,9 @@ kitchenSink1 = def
, Glean.Test.kitchenSink_maybe_ = Just def
, Glean.Test.kitchenSink_bool_ = True
, Glean.Test.kitchenSink_string_ = "Hello\0world!\0"
, Glean.Test.kitchenSink_set_of_nat = [toNat 65535, toNat 1, toNat 2 ]
, Glean.Test.kitchenSink_set_of_string = ["apa", "bepa"]
, Glean.Test.kitchenSink_set_of_nat =
Set.fromList [toNat 65535, toNat 1, toNat 2 ]
, Glean.Test.kitchenSink_set_of_string = Set.fromList ["apa", "bepa"]
}

mkTestFacts :: NewFact m => (m () -> m ()) -> (m () -> m ()) -> m ()
Expand Down Expand Up @@ -106,7 +108,7 @@ mkTestFacts first second = do
, Glean.Test.kitchenSink_named_sum_ = Glean.Test.Sum_wed True
, Glean.Test.kitchenSink_named_record_ = rec
, Glean.Test.kitchenSink_maybe_ = Nothing
, Glean.Test.kitchenSink_set_of_pred = [kitchenSink2Fact0]
, Glean.Test.kitchenSink_set_of_pred = Set.fromList [kitchenSink2Fact0]
}

kitchenSink2Term1b = kitchenSink2Term1
Expand Down

0 comments on commit d1576ba

Please sign in to comment.