From b167a8af7b300d043a5a1fbdeef5b67063d7c468 Mon Sep 17 00:00:00 2001 From: Ryan Potts Date: Tue, 5 Dec 2017 16:44:17 -0500 Subject: [PATCH] remove error tests per #902 --- .../rna-transcription/canonical-data.json | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/exercises/rna-transcription/canonical-data.json b/exercises/rna-transcription/canonical-data.json index 7984d6f0eb..b86d670e56 100644 --- a/exercises/rna-transcription/canonical-data.json +++ b/exercises/rna-transcription/canonical-data.json @@ -43,24 +43,6 @@ "property": "toRna", "dna": "ACGTGGTCTTAA", "expected": "UGCACCAGAAUU" - }, - { - "description": "correctly handles invalid input (RNA instead of DNA)", - "property": "toRna", - "dna": "U", - "expected": {"error": "invalid input"} - }, - { - "description": "correctly handles completely invalid DNA input", - "property": "toRna", - "dna": "XXX", - "expected": {"error": "invalid input"} - }, - { - "description": "correctly handles partially invalid DNA input", - "property": "toRna", - "dna": "ACGTXXXCTTAA", - "expected": {"error": "invalid input"} } ] }