Skip to content
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

WIP #739

Closed
wants to merge 2 commits into from
Closed

WIP #739

Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ script:
- uname -a
- which -a vim
- vim --version
- export TZ=America/Vancouver
- |
if [[ "${RUN_LINT}" != "true" ]]; then
env | sort
/tmp/vim-themis/bin/themis --runtimepath /tmp/vimproc --exclude ConcurrentProcess --reporter dot
fi
- if [[ "${RUN_LINT}" == "true" ]] ; then bash scripts/run-lint-on-ci.sh ; fi
Expand Down
2 changes: 1 addition & 1 deletion test/DateTime.vimspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Describe DateTime
Assert Equals(dt.second(), 5)
Assert Equals(dt.timezone().offset(), 0)
End
It can treat the some format specifier
It can treat some format specifier
let dt = DT.from_format('02 Jan 2012 03:04:05 +0900', '%d %b %Y%n%H:%M:%S%n%z', 'C')
Assert Equals(dt.year(), 2012)
Assert Equals(dt.month(), 1)
Expand Down