diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-04-07 10:34:38 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-04-07 10:35:29 +0200 |
commit | b7a7273ecaa01020dfed4811b527c720445902d5 (patch) | |
tree | 9beb06f1ad6878e85322ca9c8e08d95cf815ef1e | |
parent | c403a3db1c06c608a61feec81eaae5d3ddb34e93 (diff) | |
download | gitlab-ce-27724-fe-update-trace-handling-code.tar.gz |
-rw-r--r-- | app/views/projects/builds/show.html.haml | 2 | ||||
-rw-r--r-- | spec/javascripts/build_spec.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/builds/show.html.haml b/app/views/projects/builds/show.html.haml index f6b068a1e27..0faad57a312 100644 --- a/app/views/projects/builds/show.html.haml +++ b/app/views/projects/builds/show.html.haml @@ -75,7 +75,7 @@ %span< Showing last %span.js-truncated-info-size>< - Kb of log + KiB of log %code.bash.js-build-output .build-loader-animation.js-build-refresh diff --git a/spec/javascripts/build_spec.js b/spec/javascripts/build_spec.js index a0c38c904de..edd4b3c1440 100644 --- a/spec/javascripts/build_spec.js +++ b/spec/javascripts/build_spec.js @@ -158,7 +158,7 @@ describe('Build', () => { expect( $('#build-trace .js-truncated-info').text().trim(), - ).toContain('Showing last 50 Kb of log'); + ).toContain('Showing last 50 KiB of log'); expect($('#build-trace .js-truncated-info-size').text()).toMatch('50'); }); |