Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ydshieh committed Mar 29, 2024
1 parent cf3754d commit 1a60e8c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/models/bertweet/test_tokenization_bertweet.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ def setUp(self):
with open(self.merges_file, "w", encoding="utf-8") as fp:
fp.write("\n".join(merges))

def test_foo_1(self):
assert 1 == 2

def test_foo_2(self):
assert 1 == 3

def get_tokenizer(self, **kwargs):
kwargs.update(self.special_tokens_map)
return BertweetTokenizer.from_pretrained(self.tmpdirname, **kwargs)
Expand Down

0 comments on commit 1a60e8c

Please sign in to comment.