Skip to content

Commit

Permalink
Tidying up
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkMpn committed Dec 31, 2022
1 parent f3cd813 commit aae100c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MarkMpn.Sql4Cds.Engine.Tests/AdoProviderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ public void WaitFor()
stopwatch.Restart();
cmd.ExecuteNonQuery();
stopwatch.Stop();
Assert.IsTrue(stopwatch.ElapsedMilliseconds > 2000 && stopwatch.ElapsedMilliseconds < 2100, "WAITFOR + INSERT expected to take 2.0s - 2.1s, actually took " + stopwatch.Elapsed);
Assert.IsTrue(stopwatch.ElapsedMilliseconds >= 2000 && stopwatch.ElapsedMilliseconds < 2100, "WAITFOR + INSERT expected to take 2.0s - 2.1s, actually took " + stopwatch.Elapsed);
}
}

Expand Down
2 changes: 1 addition & 1 deletion MarkMpn.Sql4Cds.Engine/ExecutionPlanNodeTypeDescriptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public override bool GetPropertiesSupported(ITypeDescriptorContext context)
value = desc.GetPropertyOwner(null);

var list = (System.Collections.IList)value;
return list!= null && list.Count > 0;
return list != null && list.Count > 0;
}

public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
Expand Down
2 changes: 1 addition & 1 deletion build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ variables:
- name: buildConfiguration
value: 'Release'
- name: isMain
value: $[eq(variables['Build.SourceBranch'], 'refs/heads/main')]
value: $[eq(variables['Build.SourceBranch'], 'refs/heads/master')]

steps:
- checkout: self
Expand Down

0 comments on commit aae100c

Please sign in to comment.