Skip to content

Commit

Permalink
Remove leftover length param in StringS (#580)
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin authored Dec 18, 2024
1 parent b96ccd0 commit 658be0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def test_index_of_symbolic_start_idx(self):
self.assertTrue(32 < s.index("an") < 38)

def test_str_to_int(self):
str_symb = claripy.StringS("symb_strtoint", 4, explicit_name=True)
str_symb = claripy.StringS("symb_strtoint", explicit_name=True)
res = claripy.StrToInt(str_symb)
solver = self.get_solver()
target_num = 12 if KEEP_TEST_PERFORMANT else 100000
Expand Down

0 comments on commit 658be0c

Please sign in to comment.