From b94654ff15382f7dd0e20f9e6b35b8759962be9a Mon Sep 17 00:00:00 2001 From: alvations Date: Mon, 22 Jun 2020 17:01:10 +0800 Subject: [PATCH] Fix typo in variable name. --- sacremoses/test/test_truecaser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sacremoses/test/test_truecaser.py b/sacremoses/test/test_truecaser.py index 0035e8c..0399df1 100644 --- a/sacremoses/test/test_truecaser.py +++ b/sacremoses/test/test_truecaser.py @@ -62,7 +62,7 @@ def setUp(self): "4fb3bac1da1ba7a172ff1936e96bee3bc8892931/" "big.txt" ) - self.big_text = get_content(big_text_url).decode("utf8") + self.big_txt = get_content(big_text_url).decode("utf8") with open("big.txt", "w") as fout: fout.write(self.big_txt)