File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
generated-sources/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api
src/test/kotlin/org/jetbrains/kotlinx/dataframe/api Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ class AllExceptTests : ColumnsSelectionDslTests() {
17
17
18
18
@Test
19
19
fun `exceptions` () {
20
- shouldThrow<IllegalArgumentException > {
20
+ shouldThrow<IllegalStateException > {
21
21
dfGroup.select {
22
22
name.firstName.allColsExcept(" firstName" [" secondName" ])
23
23
}
24
24
}
25
25
26
- shouldThrow<IllegalArgumentException > {
26
+ shouldThrow<IllegalStateException > {
27
27
dfGroup.select {
28
28
name.firstName.allColsExcept(pathOf(" name" , " firstName" , " secondName" ))
29
29
}
Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ class AllExceptTests : ColumnsSelectionDslTests() {
17
17
18
18
@Test
19
19
fun `exceptions` () {
20
- shouldThrow<IllegalArgumentException > {
20
+ shouldThrow<IllegalStateException > {
21
21
dfGroup.select {
22
22
name.firstName.allColsExcept(" firstName" [" secondName" ])
23
23
}
24
24
}
25
25
26
- shouldThrow<IllegalArgumentException > {
26
+ shouldThrow<IllegalStateException > {
27
27
dfGroup.select {
28
28
name.firstName.allColsExcept(pathOf(" name" , " firstName" , " secondName" ))
29
29
}
You can’t perform that action at this time.
0 commit comments