Skip to content

Commit d138198

Browse files
committed
patch tests
1 parent 10b000b commit d138198

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/fixtures/cleanup-test-env.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ readonly YELLOW='\033[1;33m'
1717
readonly NC='\033[0m' # No Color
1818

1919
log_info() {
20-
echo -e "${GREEN}[INFO]${NC} $*"
20+
echo -e "${GREEN}[INFO]${NC} $*" >&2
2121
}
2222

2323
log_warn() {
24-
echo -e "${YELLOW}[WARN]${NC} $*"
24+
echo -e "${YELLOW}[WARN]${NC} $*" >&2
2525
}
2626

2727
log_error() {
28-
echo -e "${RED}[ERROR]${NC} $*"
28+
echo -e "${RED}[ERROR]${NC} $*" >&2
2929
}
3030

3131
# Check if running with required privileges

tests/fixtures/setup-test-env.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ readonly YELLOW='\033[1;33m'
1919
readonly NC='\033[0m' # No Color
2020

2121
log_info() {
22-
echo -e "${GREEN}[INFO]${NC} $*"
22+
echo -e "${GREEN}[INFO]${NC} $*" >&2
2323
}
2424

2525
log_warn() {
26-
echo -e "${YELLOW}[WARN]${NC} $*"
26+
echo -e "${YELLOW}[WARN]${NC} $*" >&2
2727
}
2828

2929
log_error() {
30-
echo -e "${RED}[ERROR]${NC} $*"
30+
echo -e "${RED}[ERROR]${NC} $*" >&2
3131
}
3232

3333
# Check if running with required privileges

0 commit comments

Comments
 (0)