Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
maximiliankaul committed Oct 19, 2023
1 parent 0faf224 commit 566097e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ class PythonFrontendTest : BaseTest() {
assertNotNull(recordFoo)
assertLocalName("Foo", recordFoo)

assertEquals(2, recordFoo.fields.size)
val somevar = recordFoo.fields[0]
assertEquals(1, recordFoo.fields.size)
val somevar = recordFoo.fields["somevar"]
assertNotNull(somevar)
assertLocalName("somevar", somevar)
// assertEquals(tu.parseType("int", false), somevar.type) TODO fix type deduction
Expand Down

0 comments on commit 566097e

Please sign in to comment.