Skip to content

Commit

Permalink
Fix for attribute rename itir -> gtir on latest main
Browse files Browse the repository at this point in the history
  • Loading branch information
edopao committed Dec 18, 2024
1 parent fd7f472 commit 71e54fd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def testee(
testee_op(b, out=c)
testee_op(a, out=b)

input_field_names = extractors.InputNamesExtractor.only_fields(testee.itir)
input_field_names = extractors.InputNamesExtractor.only_fields(testee.gtir)
assert input_field_names == {"a", "b"}


Expand All @@ -98,5 +98,5 @@ def testee(
testee_op(a, out=b)
testee_op(a, out=c)

output_field_names = extractors.OutputNamesExtractor.only_fields(testee.itir)
output_field_names = extractors.OutputNamesExtractor.only_fields(testee.gtir)
assert output_field_names == {"b", "c"}

0 comments on commit 71e54fd

Please sign in to comment.