Including missing Polyglot_Spec in all the tests (#9126)

This commit is contained in:
Jaroslav Tulach 2024-02-21 16:16:00 +01:00 committed by GitHub
parent 01fc65eec5
commit 2a42388905
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,7 @@ polyglot java import java.time.LocalDate
polyglot java import java.util.function.Function as Java_Function
polyglot java import org.enso.base_test_helpers.IntHolder
spec = suite_builder.group "Polyglot" group_builder->
add_specs suite_builder = suite_builder.group "Polyglot" group_builder->
group_builder.specify "should be able to invoke a polyglot method by name and pass arguments" <|
poly_date = LocalDate.now
date = Date.today.to_date_time

View File

@ -40,6 +40,7 @@ import project.Data.Ordering.Comparator_Spec
import project.Data.Ordering.Natural_Order_Spec
import project.Data.Ordering.Vector_Lexicographic_Order_Spec
import project.Data.Pair_Spec
import project.Data.Polyglot_Spec
import project.Data.Problems_Spec
import project.Data.Range_Spec
import project.Data.Regression_Spec
@ -137,6 +138,7 @@ main filter=Nothing =
R_Interop_Spec.add_specs suite_builder
Pair_Spec.add_specs suite_builder
Parse_Spec.add_specs suite_builder
Polyglot_Spec.add_specs suite_builder
Problems_Spec.add_specs suite_builder
Range_Spec.add_specs suite_builder
Ref_Spec.add_specs suite_builder