From 77a48aaa732e194b89db953780e7f5616a538539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:07:00 -0700 Subject: [PATCH] Test of no important changes (#230) --- .../protein-translation/protein-translation-test.arr | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/exercises/practice/protein-translation/protein-translation-test.arr b/exercises/practice/protein-translation/protein-translation-test.arr index efbe2db..f56ca5a 100644 --- a/exercises/practice/protein-translation/protein-translation-test.arr +++ b/exercises/practice/protein-translation/protein-translation-test.arr @@ -228,3 +228,9 @@ data TestRun: test(run, active) end test(incomplete-sequence, false), test(incomplete-sequence-with-stop, false) ].each(lam(t): when t.active: t.run() end end) + +fun ignore-this-trying-to-trigger-important-files(): + check "Incomplete RNA sequence can translate if valid until a STOP codon": + proteins("UUCUUCUAAUGGU") is [list: "Phenylalanine", "Phenylalanine"] + end +end