summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/golang.rs
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-09-04 19:13:53 -0400
committerGitHub <noreply@github.com>2019-09-04 19:13:53 -0400
commite66d7bae1cdf753d4106980fa35305a8375cb73a (patch)
treeaf969600f2c0256a62f4211cefa1132e50be63ee /tests/testsuite/golang.rs
parent68754208c1fae976c71747fe87d8ab558922cd3f (diff)
ci: Migrate CI from Azure Pipelines to GitHub Actions (#233)
Migrated CI from Azure Pipelines to GitHub Actions. Until the release process is figured out in Actions, we'll stick to using Azure pipelines for releases.
Diffstat (limited to 'tests/testsuite/golang.rs')
-rw-r--r--tests/testsuite/golang.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/testsuite/golang.rs b/tests/testsuite/golang.rs
index c63e25c0b..b5d37bc1f 100644
--- a/tests/testsuite/golang.rs
+++ b/tests/testsuite/golang.rs
@@ -31,7 +31,7 @@ fn folder_with_go_file() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.10"));
+ let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1"));
assert_eq!(expected, actual);
Ok(())
}
@@ -48,7 +48,7 @@ fn folder_with_go_mod() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.10"));
+ let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1"));
assert_eq!(expected, actual);
Ok(())
}
@@ -65,7 +65,7 @@ fn folder_with_go_sum() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.10"));
+ let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1"));
assert_eq!(expected, actual);
Ok(())
}
@@ -83,7 +83,7 @@ fn folder_with_godeps() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.10"));
+ let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1"));
assert_eq!(expected, actual);
Ok(())
}
@@ -100,7 +100,7 @@ fn folder_with_glide_yaml() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.10"));
+ let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1"));
assert_eq!(expected, actual);
Ok(())
}
@@ -117,7 +117,7 @@ fn folder_with_gopkg_yml() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.10"));
+ let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1"));
assert_eq!(expected, actual);
Ok(())
}
@@ -134,7 +134,7 @@ fn folder_with_gopkg_lock() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.10"));
+ let expected = format!("via {} ", Color::Cyan.bold().paint("🐹 v1.12.1"));
assert_eq!(expected, actual);
Ok(())
}