From f8cfeb3e47b41dc01dfe2d3b19dfc5813501fa49 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 19 Feb 2022 16:37:25 -0800 Subject: [PATCH] tests: recognize 'canon' as a textual format Gitlab: related to #2193 --- rtest/gvtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtest/gvtest.py b/rtest/gvtest.py index 4bae0fea3..94fef9518 100644 --- a/rtest/gvtest.py +++ b/rtest/gvtest.py @@ -81,7 +81,7 @@ def dot(T: str, source_file: Optional[Path] = None, source: Optional[str] = None "one of `source_file` or `source` needs to be provided" # is the output format a textual format? - output_is_text = T in ("cmapx", "json", "pic", "svg", "xdot") + output_is_text = T in ("canon", "cmapx", "json", "pic", "svg", "xdot") kwargs = {} if output_is_text: -- 2.40.0