Skip to content

chore: prep the repo for automated releases #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jan 31, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update license test
  • Loading branch information
eshanholtz committed Jan 30, 2020
commit f3c9f7916ace2260879a253e5c718e5836375d56
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
language: java
matrix:
include:
- os: linux
dist: precise
- name: 'OpenJDK 7'
jdk: openjdk7
- os: linux
- name: 'OpenJDK 8'
jdk: openjdk8
- os: linux
- name: 'Oracle JDK 8'
jdk: oraclejdk8
name: 'Oracle JDK 8'
- jdk: openjdk11
name: 'OpenJDK 11'
allow_failures:
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/sendgrid/LicenseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void testLicenseShouldHaveCorrectYear() throws IOException {
}
}
}
String expectedCopyright = String.format("Copyright (c) 2016-%d SendGrid, Inc.", Calendar.getInstance().get(Calendar.YEAR));
String expectedCopyright = String.format("Copyright (c) 2016-%d Twilio SendGrid, Inc.", Calendar.getInstance().get(Calendar.YEAR));
Assert.assertEquals("License has incorrect year", copyrightText, expectedCopyright);
}
}