Skip to content

Commit 84efbe1

Browse files
committed
GHA test fixes
Signed-off-by: Corey Hemminger <hemminger@hotmail.com>
1 parent 8ff69e3 commit 84efbe1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
cat install_licensed.sh
195195
- name: Verify license_id is present in script
196196
run: |
197-
if grep -q "license_id='test-license-12345'" install_licensed.sh; then
197+
if grep -q 'license_id="test-license-12345"' install_licensed.sh; then
198198
echo "✓ License ID found pre-set in script"
199199
else
200200
echo "✗ License ID not found in script"
@@ -227,7 +227,7 @@ jobs:
227227
- name: Verify license_id is present in script
228228
run: |
229229
$content = Get-Content install_licensed.ps1 -Raw
230-
if ($content -match "install -license_id 'test-license-12345'") {
230+
if ($content -match "license_id = 'test-license-12345'") {
231231
Write-Host "✓ License ID found in install command"
232232
} else {
233233
Write-Host "✗ License ID not found in script"

0 commit comments

Comments
 (0)