From ac0cc0c94f3d19b4bed8cdb1666062576aa71ba4 Mon Sep 17 00:00:00 2001 From: KarolKaczmarek Date: Fri, 7 Aug 2015 16:42:34 -0700 Subject: [PATCH] Update Math.tests.ps1 --- Math.tests.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Math.tests.ps1 b/Math.tests.ps1 index 25dad66..91bcad7 100644 --- a/Math.tests.ps1 +++ b/Math.tests.ps1 @@ -6,6 +6,7 @@ Import-Module .\Math.psm1 -force Describe 'Math' { Context 'multiply function' { It 'should correctly multiply positive numbers' { + Write-Host "GitHub key: $($env:GitHubKey)" $result = multiply -first 4 -second 3 $result | Should Be 12 } @@ -16,4 +17,4 @@ Describe 'Math' { } } -} \ No newline at end of file +}