From: Antoine Busque Date: Thu, 5 May 2016 21:16:35 +0000 (-0400) Subject: Fix: update tests for --no-intersection X-Git-Url: http://git.efficios.com/?p=deliverable%2Flttng-analyses.git;a=commitdiff_plain;h=80904fad84b113ce5e9c6a54b64eaa3380fd0006 Fix: update tests for --no-intersection Signed-off-by: Antoine Busque --- diff --git a/tests/integration/expected/no_intersection.txt b/tests/integration/expected/no_intersection.txt index a7182c3..5367af4 100644 --- a/tests/integration/expected/no_intersection.txt +++ b/tests/integration/expected/no_intersection.txt @@ -1 +1 @@ -Error: Trace has no intersection. Use --disable-intersect-mode to override \ No newline at end of file +Error: Trace has no intersection. Use --no-intersection to override \ No newline at end of file diff --git a/tests/integration/test_intersect.py b/tests/integration/test_intersect.py index 2e11bc0..99c37f2 100644 --- a/tests/integration/test_intersect.py +++ b/tests/integration/test_intersect.py @@ -48,6 +48,6 @@ class IntersectTest(AnalysisTest): test_name = 'disable_intersect' expected = self.get_expected_output(test_name) result = self.get_cmd_output('lttng-irqstats', - options='--disable-intersect-mode') + options='--no-intersection') self._assertMultiLineEqual(result, expected, test_name)