-
Notifications
You must be signed in to change notification settings - Fork 25.6k
ESQL: Make function tests with timezone or locale use random configurations #138107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 69 commits
f95c2a8
569d9e5
cc15c9f
449abe6
5dec7c3
fedbf4f
b088abf
ee1316c
13d8b4b
d794329
2713280
f76f5ec
9005c78
fad189f
4f62f23
4c5adc0
3f233bf
d81729b
8b8a115
a11d4b8
ebd00dd
de30da7
dcce704
24e99c1
dd523d5
ad32a98
539b7a7
5053983
a75301c
7e5c01d
544c4cf
e499df4
205a15c
46debec
29707e5
a40f913
00e2d67
e3ae6ba
096541f
b9100bd
f6d6d2c
de3dd41
ee0af20
44ad461
84b882e
2f0b404
096d9b3
fdc0cf8
4dc641f
d46fc5b
bdd7138
55c4efd
d25ab57
b7d63b9
a3e592c
3b34ef6
e76d5b2
2194e83
e26c61d
f9886b1
df8b7c6
4723f43
561f99c
ba354eb
16bdcf9
0c91474
f162409
ff51e44
ca5be79
5b5a330
f5f65b4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1606,7 +1606,7 @@ public static List<TestCaseSupplier> mapTestCases( | |
| ) { | ||
| return suppliers.stream() | ||
| .map(supplier -> new TestCaseSupplier(supplier.name(), supplier.types(), () -> mapper.apply(supplier.get()))) | ||
| .toList(); | ||
| .collect(Collectors.toCollection(ArrayList::new)); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this not do the same thing?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| } | ||
|
|
||
| public static final class TestCase { | ||
|
|
@@ -1822,19 +1822,6 @@ public Object extra() { | |
| return extra; | ||
| } | ||
|
|
||
| /** | ||
| * Build a new {@link TestCase} with the {@link #TEST_CONFIGURATION}. | ||
| * <p> | ||
| * The source is also set to match the configuration | ||
| * </p> | ||
| * | ||
| * @deprecated Use a custom configuration instead, and test the results. | ||
| */ | ||
| @Deprecated | ||
| public TestCase withStaticConfiguration() { | ||
| return withConfiguration(TEST_SOURCE, TEST_CONFIGURATION); | ||
| } | ||
|
|
||
| /** | ||
| * Build a new {@link TestCase} with new {@link #configuration}. | ||
| * <p> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.