Skip to content

Commit

Permalink
Update DbMocker ConnectionString
Browse files Browse the repository at this point in the history
  • Loading branch information
dvoituron committed Aug 2, 2018
1 parent c8e55dc commit ac9cf00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DbMocker/MockDbConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ public MockDbConnection()
#region LEGACY METHODS

/// <summary />
public override string ConnectionString { get; set; }
public override string ConnectionString { get; set; } = $"Server=DbMockerServer;Database=DbMockerDatabase";

/// <summary />
public override string Database => "Mock Database";
public override string Database => "DbMockerDatabase";

/// <summary />
public override string DataSource => "Mock Data Source";
public override string DataSource => "DbMockerServer";

/// <summary />
public override string ServerVersion => "1.0";
Expand Down

0 comments on commit ac9cf00

Please sign in to comment.