From 7f54db1f04f6d0d0e7edc917ea634badd5d4d679 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Tue, 4 Dec 2012 00:54:52 +0200 Subject: [PATCH] test: fix an evident copy-paste error in argument parsing test --- test/arg-test.c | 2 +- test/argument-parsing | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/arg-test.c b/test/arg-test.c index adc56e30..6c49eacd 100644 --- a/test/arg-test.c +++ b/test/arg-test.c @@ -41,7 +41,7 @@ int main(int argc, char **argv){ printf("positional arg 1 %s\n", pos_arg1); if (pos_arg2) - printf("positional arg 2 %s\n", pos_arg1); + printf("positional arg 2 %s\n", pos_arg2); for ( ; opt_index < argc ; opt_index ++) { diff --git a/test/argument-parsing b/test/argument-parsing index 672de0b3..94e90874 100755 --- a/test/argument-parsing +++ b/test/argument-parsing @@ -9,7 +9,7 @@ keyword 1 int 7 string foo positional arg 1 pos1 -positional arg 2 pos1 +positional arg 2 pos2 EOF test_expect_equal_file OUTPUT EXPECTED -- 2.43.0