D4179: tests: move assertion closer to want/got declarations in test-parseindex2.py

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Thu Aug 9 15:08:14 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG94cff858b4e5: tests: move assertion closer to want/got declarations in test-parseindex2.py (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D4179?vs=10122&id=10170

REVISION DETAIL
  https://phab.mercurial-scm.org/D4179

AFFECTED FILES
  tests/test-parseindex2.py

CHANGE DETAILS

diff --git a/tests/test-parseindex2.py b/tests/test-parseindex2.py
--- a/tests/test-parseindex2.py
+++ b/tests/test-parseindex2.py
@@ -186,11 +186,10 @@
 
         py_res_1 = py_parseindex(data_inlined, True)
         c_res_1 = parse_index2(data_inlined, True)
+        self.assertEqual(py_res_1, c_res_1) # inline data
 
         py_res_2 = py_parseindex(data_non_inlined, False)
         c_res_2 = parse_index2(data_non_inlined, False)
-
-        self.assertEqual(py_res_1, c_res_1) # inline data
         self.assertEqual(py_res_2, c_res_2) # no inline data
 
         ix = parsers.parse_index2(data_inlined, True)[0]



To: durin42, #hg-reviewers, pulkit
Cc: mercurial-devel


More information about the Mercurial-devel mailing list