From 5dd0d377c9437e4251f85590dda17dceb83d2f10 Mon Sep 17 00:00:00 2001 From: Alexey Buzanov Date: Wed, 20 Aug 2014 10:39:11 +0400 Subject: [PATCH] rename test --- Tests/test_file_tga.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Tests/test_file_tga.py b/Tests/test_file_tga.py index 6affba780..ea94dee64 100644 --- a/Tests/test_file_tga.py +++ b/Tests/test_file_tga.py @@ -3,9 +3,9 @@ from helper import unittest, PillowTestCase from PIL import Image -class TestFileSun(PillowTestCase): +class TestFileTga(PillowTestCase): - def test_sanity(self): + def test_id_field(self): # tga file with id field test_file = "Tests/images/tga_id_field.tga" @@ -18,5 +18,3 @@ class TestFileSun(PillowTestCase): if __name__ == '__main__': unittest.main() - -# End of file