diff options
author | Kei YAMAZAKI <daydream.yamazaki@gmail.com> | 2013-12-29 01:45:38 +0900 |
---|---|---|
committer | Kei YAMAZAKI <daydream.yamazaki@gmail.com> | 2014-01-21 22:34:30 +0900 |
commit | 604d39305bd2ecba16183ce2a659f8f1a499197a (patch) | |
tree | d5a13521650b38dbe8a7a98a3a1b3a4ea67ed5e1 /tests/scm | |
parent | 777a29aa8a52800437c5c16988562e431ad4334f (diff) | |
download | python-jenkins-job-builder-604d39305bd2ecba16183ce2a659f8f1a499197a.tar.gz python-jenkins-job-builder-604d39305bd2ecba16183ce2a659f8f1a499197a.tar.xz python-jenkins-job-builder-604d39305bd2ecba16183ce2a659f8f1a499197a.zip |
Fix multibyte character problem
Fixed problem that causes a UnicodeEncodeError when use multi-byte characters in the job.yml.
Change-Id: Ie715c827a794e73fae11cdca079ea80cfb8c280d
Diffstat (limited to 'tests/scm')
-rw-r--r-- | tests/scm/fixtures/git-shallow-clone01.xml | 2 | ||||
-rw-r--r-- | tests/scm/fixtures/git-shallow-clone02.xml | 2 | ||||
-rw-r--r-- | tests/scm/fixtures/git-shallow-clone03.xml | 2 | ||||
-rw-r--r-- | tests/scm/fixtures/gitlab.xml | 2 | ||||
-rw-r--r-- | tests/scm/fixtures/repo001.xml | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/tests/scm/fixtures/git-shallow-clone01.xml b/tests/scm/fixtures/git-shallow-clone01.xml index d66862cd..dd001541 100644 --- a/tests/scm/fixtures/git-shallow-clone01.xml +++ b/tests/scm/fixtures/git-shallow-clone01.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" ?> +<?xml version="1.0" encoding="utf-8"?> <project> <scm class="hudson.plugins.git.GitSCM"> <configVersion>2</configVersion> diff --git a/tests/scm/fixtures/git-shallow-clone02.xml b/tests/scm/fixtures/git-shallow-clone02.xml index c1735f21..57fe8d7a 100644 --- a/tests/scm/fixtures/git-shallow-clone02.xml +++ b/tests/scm/fixtures/git-shallow-clone02.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" ?> +<?xml version="1.0" encoding="utf-8"?> <project> <scm class="hudson.plugins.git.GitSCM"> <configVersion>2</configVersion> diff --git a/tests/scm/fixtures/git-shallow-clone03.xml b/tests/scm/fixtures/git-shallow-clone03.xml index c1735f21..57fe8d7a 100644 --- a/tests/scm/fixtures/git-shallow-clone03.xml +++ b/tests/scm/fixtures/git-shallow-clone03.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" ?> +<?xml version="1.0" encoding="utf-8"?> <project> <scm class="hudson.plugins.git.GitSCM"> <configVersion>2</configVersion> diff --git a/tests/scm/fixtures/gitlab.xml b/tests/scm/fixtures/gitlab.xml index 4623bf9e..be772a9d 100644 --- a/tests/scm/fixtures/gitlab.xml +++ b/tests/scm/fixtures/gitlab.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" ?> +<?xml version="1.0" encoding="utf-8"?> <project> <scm class="hudson.plugins.git.GitSCM"> <configVersion>2</configVersion> diff --git a/tests/scm/fixtures/repo001.xml b/tests/scm/fixtures/repo001.xml index bed34c01..94be6b5c 100644 --- a/tests/scm/fixtures/repo001.xml +++ b/tests/scm/fixtures/repo001.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" ?> +<?xml version="1.0" encoding="utf-8"?> <project> <scm class="hudson.plugins.repo.RepoScm"> <manifestRepositoryUrl>https://example.com/project/</manifestRepositoryUrl> |