Skip to content

Commit 5296084

Browse files
committed
Fix nuget publish build.
1 parent 0d1021d commit 5296084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Optimizely.Graph.Source.Sdk/Optimizely.Graph.Source.Sdk.Tests/RepositoryTests/GraphSourceRepositoryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public async Task SaveContentAsync_SerializesData_ReturnsJournalId()
253253
mockRestClient.Setup(c => c.HandleResponse<ContentV2ApiResponse>(response)).ReturnsAsync(expectedApiResponse);
254254

255255
// Act
256-
var actualJournalId = await repository.SaveContentAsync(generateId: (x) => x.ToString(), exampleData);
256+
var actualJournalId = await repository.SaveContentAsync(generateId: (x) => x.ToString(), "en", exampleData);
257257

258258
// Assert
259259
Assert.AreEqual(expectedApiResponse.JournalId, actualJournalId);

0 commit comments

Comments
 (0)