Skip to content

Commit de3a184

Browse files
committed
remove version from test headers
1 parent ccd34bf commit de3a184

107 files changed

Lines changed: 107 additions & 107 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

exercises/acronym/acronym_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from acronym import abbreviate
44

5-
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.7.0
5+
# Tests adapted from `problem-specifications//canonical-data.json`
66

77

88
class AcronymTest(unittest.TestCase):

exercises/affine-cipher/affine_cipher_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from affine_cipher import decode, encode
44

5-
# Tests adapted from `problem-specifications//canonical-data.json` @ v2.0.0
5+
# Tests adapted from `problem-specifications//canonical-data.json`
66

77

88
class AffineCipherTest(unittest.TestCase):

exercises/all-your-base/all_your_base_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from all_your_base import rebase
44

5-
# Tests adapted from `problem-specifications//canonical-data.json` @ v2.3.0
5+
# Tests adapted from `problem-specifications//canonical-data.json`
66

77

88
class AllYourBaseTest(unittest.TestCase):

exercises/allergies/allergies_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from allergies import Allergies
44

5-
# Tests adapted from `problem-specifications//canonical-data.json` @ v2.0.0
5+
# Tests adapted from `problem-specifications//canonical-data.json`
66

77

88
class AllergiesTest(unittest.TestCase):

exercises/alphametics/alphametics_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from alphametics import solve
44

5-
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.3.0
5+
# Tests adapted from `problem-specifications//canonical-data.json`
66

77

88
class AlphameticsTest(unittest.TestCase):

exercises/anagram/anagram_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from anagram import find_anagrams
44

5-
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.5.0
5+
# Tests adapted from `problem-specifications//canonical-data.json`
66

77

88
class AnagramTest(unittest.TestCase):

exercises/armstrong-numbers/armstrong_numbers_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from armstrong_numbers import is_armstrong_number
44

5-
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.1.0
5+
# Tests adapted from `problem-specifications//canonical-data.json`
66

77

88
class ArmstrongNumbersTest(unittest.TestCase):

exercises/atbash-cipher/atbash_cipher_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from atbash_cipher import decode, encode
44

5-
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.2.0
5+
# Tests adapted from `problem-specifications//canonical-data.json`
66

77

88
class AtbashCipherTest(unittest.TestCase):

exercises/beer-song/beer_song_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from beer_song import recite
44

5-
# Tests adapted from `problem-specifications//canonical-data.json` @ v2.1.0
5+
# Tests adapted from `problem-specifications//canonical-data.json`
66

77

88
class BeerSongTest(unittest.TestCase):

exercises/binary-search-tree/binary_search_tree_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from binary_search_tree import BinarySearchTree, TreeNode
44

5-
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.0.0
5+
# Tests adapted from `problem-specifications//canonical-data.json`
66

77

88
class BinarySearchTreeTest(unittest.TestCase):

0 commit comments

Comments
 (0)