소스 검색

Fix checking for proto 1

Chris Bannister 11 년 전
부모
커밋
4f65494ff3
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      integration.sh

+ 2 - 3
integration.sh

@@ -8,14 +8,13 @@ function run_tests() {
 
 	ccm status
 
-	if [[ $v == 1.2.* ]]; then
+	if [[ $version == 1.2.* ]]; then
 		go test -v ./... -proto 1
 	else
 		go test -v ./...
 	fi
 
-	ccm stop --not-gently test
-	ccm remove test
+	ccm clear
 }
 
 run_tests $1