File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,9 @@ def test_with_empty_file(self):
100100 process .expect_exact ("foo.py exists" )
101101 process .expect_exact (":(" )
102102 process .expect_exact ("prints hello" )
103- process .expect_exact ("expected \" hello\" , not \" \" " )
103+ # process.expect_exact("expected \"hello\", not \"\"")
104+ process .expect_exact ("expected: \" hello\" " )
105+ process .expect_exact ("actual: \" \" " )
104106 process .close (force = True )
105107
106108
@@ -146,7 +148,10 @@ def test_with_empty_file(self):
146148 process .expect_exact ("foo.py exists" )
147149 process .expect_exact (":(" )
148150 process .expect_exact ("prints hello name" )
149- process .expect_exact ("expected \" hello bar\" , not \" \" " )
151+ # process.expect_exact("expected \"hello bar\", not \"\"")
152+ # process.expect_exact(r"expected: \"hello bar\"\n actual: \"\"")
153+ process .expect_exact ("expected: \" hello bar\" " )
154+ process .expect_exact ("actual: \" \" " )
150155 process .close (force = True )
151156
152157 def test_with_correct_file (self ):
You can’t perform that action at this time.
0 commit comments