diff --git a/python/gubbins/tests/test_python_scripts.py b/python/gubbins/tests/test_python_scripts.py index 7dff035d..9679273e 100644 --- a/python/gubbins/tests/test_python_scripts.py +++ b/python/gubbins/tests/test_python_scripts.py @@ -87,7 +87,7 @@ def test_generate_ska_alignment(self): ## Run the generate_ska_alignment script fasta_loc = os.path.join(preprocess_dir, './ska_fasta_list.txt') with open(fasta_loc,'w') as list_file: - for i in range(1,5): + for i in range(1,7): list_file.write('sequence_t' + str(i) + '\t' + \ os.path.join(preprocess_dir,'sequence_t' + str(i) + '.fasta\n')) ref_seq = os.path.join(preprocess_dir, 'sequence_t1.fasta')