Commit ec9d9b2fbd416cf92abcb34a646a230acb9966f6

Stefan Sperling 2019-08-08T09:02:40

stop passing paths to 'got stage' in basic stage test

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/regress/cmdline/stage.sh b/regress/cmdline/stage.sh
index 8c98d12..a19a072 100755
--- a/regress/cmdline/stage.sh
+++ b/regress/cmdline/stage.sh
@@ -34,7 +34,7 @@ function test_stage_basic {
 	echo ' M alpha' > $testroot/stdout.expected
 	echo ' D beta' >> $testroot/stdout.expected
 	echo ' A foo' >> $testroot/stdout.expected
-	(cd $testroot/wt && got stage alpha beta foo > $testroot/stdout)
+	(cd $testroot/wt && got stage > $testroot/stdout)
 
 	cmp -s $testroot/stdout.expected $testroot/stdout
 	ret="$?"