From 53aaa5c140ca319fe8efe16c901b8a878861ad5f Mon Sep 17 00:00:00 2001 From: Apoorva Ranade Date: Mon, 22 Feb 2021 20:13:27 +0530 Subject: [PATCH] Updating tests for multi-line strings --- src/test/data/pa1/student_contributed/good.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/test/data/pa1/student_contributed/good.py b/src/test/data/pa1/student_contributed/good.py index b0812da..4c01c88 100644 --- a/src/test/data/pa1/student_contributed/good.py +++ b/src/test/data/pa1/student_contributed/good.py @@ -66,4 +66,12 @@ print(f.x) f.bar(4) a=[[[1],[2]][[3],[4]]] -print(a[0][0][1]*a[1][1][0]) \ No newline at end of file +print(a[0][0][1]*a[1][1][0]) + +multiline_string="Hi World, +Here I am" + +""" +This is a +multi-line comment. +""" \ No newline at end of file