Skip to content

Commit dc0f62a

Browse files
author
Nathan Parsons
committed
Update version strings to reference problem-specifications
1 parent 2faa00c commit dc0f62a

33 files changed

Lines changed: 33 additions & 33 deletions

File tree

exercises/acronym/acronym_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from acronym import abbreviate
44

55

6-
# test cases adapted from `x-common//canonical-data.json` @ version: 1.1.0
6+
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.1.0
77

88
class AcronymTest(unittest.TestCase):
99
def test_basic(self):

exercises/allergies/allergies_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
unittest.TestCase.assertCountEqual = unittest.TestCase.assertItemsEqual
88

99

10-
# test cases adapted from `x-common//canonical-data.json` @ version: 1.0.0
10+
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.0.0
1111

1212
class AllergiesTests(unittest.TestCase):
1313
def test_no_allergies_means_not_allergic(self):

exercises/alphametics/alphametics_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from alphametics import solve
44

55

6-
# test cases adapted from `x-common//canonical-data.json` @ version: 1.0.0
6+
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.0.0
77

88
class TestAlphametics(unittest.TestCase):
99
def test_puzzle_with_three_letters(self):

exercises/anagram/anagram_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from anagram import detect_anagrams
44

55

6-
# test cases adapted from `x-common//canonical-data.json` @ version: 1.0.1
6+
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.0.1
77

88
class AnagramTests(unittest.TestCase):
99
def test_no_matches(self):

exercises/atbash-cipher/atbash_cipher_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from atbash_cipher import decode, encode
44

55

6-
# test cases adapted from `x-common//canonical-data.json` @ version: 1.0.0
6+
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.0.0
77

88
class AtbashCipherTest(unittest.TestCase):
99
def test_encode_no(self):

exercises/bob/bob_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import bob
44

55

6-
# test cases adapted from `x-common//canonical-data.json` @ version: 1.0.0
6+
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.0.0
77

88
class BobTests(unittest.TestCase):
99
def test_stating_something(self):

exercises/book-store/book_store_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from book_store import calculate_total
44

55

6-
# test cases adapted from `x-common//canonical-data.json` @ version: 1.0.1
6+
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.0.1
77

88
class BookStoreTests(unittest.TestCase):
99
def test_only_a_single_book(self):

exercises/bracket-push/bracket_push_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from bracket_push import check_brackets
44

55

6-
# test cases adapted from `x-common//canonical-data.json` @ version: 1.1.0
6+
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.1.0
77

88
class BracketPushTests(unittest.TestCase):
99
def test_paired_square_brackets(self):

exercises/collatz-conjecture/collatz_conjecture_test.py

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

33
from collatz_conjecture import collatz_steps
44

5-
# Test cases adapted from `x-common//canonical-data.json` @ version: 1.1.1
5+
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.1.1
66

77

88
class CollatzConjectureTests(unittest.TestCase):

exercises/diamond/diamond_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from diamond import make_diamond
44

55

6-
# test cases adapted from `x-common//canonical-data.json` @ version: 1.0.0
6+
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.0.0
77

88
class DiamondTests(unittest.TestCase):
99
def test_degenerate_case_with_a_single_row(self):

0 commit comments

Comments
 (0)