From 29389e8f7231265dd4af398f17ad440cbefade55 Mon Sep 17 00:00:00 2001
From: Christian Legnitto <LegNeato@users.noreply.github.com>
Date: Tue, 8 Jan 2019 23:57:34 -0800
Subject: [PATCH] Fix Azure Pipelines formatting job display name

This was showing up as `check_formatting Job`, see https://dev.azure.com/graphql-rust/GraphQL%20Rust/_build/results?buildId=162
---
 azure-pipelines.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 3046f0c7..3d308f2f 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -1,16 +1,17 @@
 jobs:
 
 - job: check_formatting
+  displayName: Check formatting
   pool:
     vmImage: ubuntu-16.04
   steps:
     - script: |
         curl https://sh.rustup.rs -sSf | sh -s -- -y
         $HOME/.cargo/bin/rustup component add rustfmt
-      displayName: Install rust
+      displayName: Install stable Rust
     - script: |
         $HOME/.cargo/bin/cargo fmt -- --check
-      displayName: Check formatting
+      displayName: Run rustfmt
 
 - template: _build/azure-pipelines-template.yml
   parameters: